From 6c35ab0ce3ec3f67edb190fecbb12eae559079bf4a647f682b75ff443424de21 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Sat, 7 Jan 2023 14:07:26 +0000 Subject: [PATCH] Accepting request 1056773 from home:bnavigator:branches:devel:languages:python:numeric MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update to 2022.12.0 * This release includes a number of bug fixes and experimental support for Zarr V3. ## New Features * Enable using offset and origin arguments in DataArray.resample() and Dataset.resample() (GH7266, PR7284). By Spencer Clark. * Add experimental support for Zarr’s in-progress V3 specification. (PR6475). By Gregory Lee and Joe Hamman. ## Breaking changes * The minimum versions of some dependencies were changed (PR7300): ## Deprecations * The PyNIO backend has been deprecated (GH4491, PR7301). By Joe Hamman. ## Bug fixes * Fix handling of coordinate attributes in where(). (GH7220, PR7229) By Sam Levang. * Import nc_time_axis when needed (GH7275, PR7276). By Michael Niklas. * Fix static typing of xr.polyval() (GH7312, PR7315). By Michael Niklas. * Fix multiple reads on fsspec S3 files by resetting file pointer to 0 when reading file streams (GH6813, PR7304). By David Hoese and Wei Ji Leong. * Fix Dataset.assign_coords() resetting all dimension coordinates to default (pandas) index (GH7346, PR7347). By Benoît Bovy. OBS-URL: https://build.opensuse.org/request/show/1056773 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-xarray?expand=0&rev=76 --- python-xarray.changes | 31 +++++++++++++++++++++++++++++++ python-xarray.spec | 16 +++++++++------- xarray-2022.11.0.tar.gz | 3 --- xarray-2022.12.0.tar.gz | 3 +++ 4 files changed, 43 insertions(+), 10 deletions(-) delete mode 100644 xarray-2022.11.0.tar.gz create mode 100644 xarray-2022.12.0.tar.gz diff --git a/python-xarray.changes b/python-xarray.changes index 9a53c06..6d7b203 100644 --- a/python-xarray.changes +++ b/python-xarray.changes @@ -1,3 +1,34 @@ +------------------------------------------------------------------- +Sat Jan 7 13:02:13 UTC 2023 - Ben Greiner + +- Update to 2022.12.0 + * This release includes a number of bug fixes and experimental + support for Zarr V3. + ## New Features + * Enable using offset and origin arguments in + DataArray.resample() and Dataset.resample() (GH7266, PR7284). + By Spencer Clark. + * Add experimental support for Zarr’s in-progress V3 + specification. (PR6475). By Gregory Lee and Joe Hamman. + ## Breaking changes + * The minimum versions of some dependencies were changed + (PR7300): + ## Deprecations + * The PyNIO backend has been deprecated (GH4491, PR7301). By Joe + Hamman. + ## Bug fixes + * Fix handling of coordinate attributes in where(). (GH7220, + PR7229) By Sam Levang. + * Import nc_time_axis when needed (GH7275, PR7276). By Michael + Niklas. + * Fix static typing of xr.polyval() (GH7312, PR7315). By Michael + Niklas. + * Fix multiple reads on fsspec S3 files by resetting file pointer + to 0 when reading file streams (GH6813, PR7304). By David Hoese + and Wei Ji Leong. + * Fix Dataset.assign_coords() resetting all dimension coordinates + to default (pandas) index (GH7346, PR7347). By Benoît Bovy. + ------------------------------------------------------------------- Tue Nov 22 13:28:48 UTC 2022 - Ben Greiner diff --git a/python-xarray.spec b/python-xarray.spec index 3e20add..5de00cf 100644 --- a/python-xarray.spec +++ b/python-xarray.spec @@ -1,7 +1,7 @@ # # spec file for package python-xarray # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python-xarray -Version: 2022.11.0 +Version: 2022.12.0 Release: 0 Summary: N-D labeled arrays and datasets in Python License: Apache-2.0 @@ -28,14 +28,14 @@ Source: https://files.pythonhosted.org/packages/source/x/xarray/xarray-% Patch0: local_dataset.patch BuildRequires: %{python_module base >= 3.8} BuildRequires: %{python_module numpy-devel >= 1.20} -BuildRequires: %{python_module packaging >= 21.0} +BuildRequires: %{python_module packaging >= 21.3} BuildRequires: %{python_module pandas >= 1.3} BuildRequires: %{python_module setuptools_scm} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-numpy >= 1.20 -Requires: python-packaging >= 21.0 +Requires: python-packaging >= 21.3 Requires: python-pandas >= 1.3 Provides: python-xray = %{version} Obsoletes: python-xray < %{version} @@ -57,7 +57,7 @@ Suggests: python-nc-time-axis # SECTION extras io Suggests: python-netCDF4 Suggests: python-h5netcdf -Suggests: python-pydap +Suggests: (python-pydap if python-base < 3.10) Suggests: python-zarr Suggests: python-fsspec Suggests: python-cftime @@ -102,15 +102,17 @@ chmod -x xarray/util/print_versions.py %python_expand %fdupes %{buildroot}%{$python_sitelib} %check +# OOM crashes the whole vm or even the local host running osc: https://github.com/pydata/xarray/issues/6854 +donttest="nczarr" if [ $(getconf LONG_BIT) -eq 32 ]; then # https://github.com/pydata/xarray/issues/5341 # https://github.com/pydata/xarray/issues/5375 # still precision problems in 2022.11.0 - donttest=" or (test_interpolate_chunk_advanced and linear)" + donttest="$donttest or (test_interpolate_chunk_advanced and linear)" # tests for 64bit types donttest="$donttest or TestZarrDictStore or TestZarrDirectoryStore" fi -%pytest -n auto -rsEf -k "not (kexprdummyprefix $donttest)" xarray +%pytest -n auto -rsEf -k "not ($donttest)" xarray %files %{python_files} %doc README.md diff --git a/xarray-2022.11.0.tar.gz b/xarray-2022.11.0.tar.gz deleted file mode 100644 index 26b813d..0000000 --- a/xarray-2022.11.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3008a302877f87a0f9043b1f01a4ad4e85b668bbdd38d488764098624632f527 -size 3053924 diff --git a/xarray-2022.12.0.tar.gz b/xarray-2022.12.0.tar.gz new file mode 100644 index 0000000..a7b2c4d --- /dev/null +++ b/xarray-2022.12.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083d08e552a7647c7ece136dfa3a4b6a1379256beb55bbed8b8ddf05f1e14ec7 +size 3060755