diff --git a/python-xarray.spec b/python-xarray.spec index 54934ee6d1b8c1d16ddb0e5c8d028541a395c4c4..c37440390e6700e6c57413d07a5af538e0f8f08b 100644 --- a/python-xarray.spec +++ b/python-xarray.spec @@ -1,6 +1,6 @@ %global _empty_manifest_terminate_build 0 Name: python-xarray -Version: 2024.7.0 +Version: 2024.10.0 Release: 1 Summary: N-D labeled arrays and datasets in Python License: Apache-2.0 @@ -18,6 +18,8 @@ Summary: N-D labeled arrays and datasets in Python Provides: python-xarray = %{version}-%{release} BuildRequires: python3-devel BuildRequires: python3-setuptools +BuildRequires: python3-pip python3-wheel +BuildRequires: python3-hatchling python3-hatch-vcs Requires: python3-numpy Requires: python3-pandas Requires: python3-packaging @@ -38,10 +40,10 @@ concise, and less error-prone developer experience. %autosetup -n xarray-%{version} %build -%py3_build +%pyproject_build %install -%py3_install +%pyproject_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi @@ -58,6 +60,21 @@ if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi %{_docdir}/* %changelog +* Fri Oct 25 2024 caiyuxin - 2024.10.0-1 +- Update package to version 2024.10.0 + * Support for Zarr-Python 3 + * Added zarr backends for open_groups() + * Added support for vectorized interpolation using additional interpolators from the scipy.interpolate module + * Fix passing missing arguments to when opening hdf5 and netCDF4 datatrees + * Make illegal path-like variable names when constructing a DataTree from a Dataset + * Fix bug when encoding times with missing values as floats in the case when the non-missing times could in theory be encoded with integers + * Fix a few bugs affecting groupby reductions with flox. + * Fix the safe_chunks validation option on the to_zarr method + * Fix binning by multiple variables where some bins have no observations. + * Fix issue where polyfit wouldn’t handle non-dimension coordinates. + Pelase see log : https://github.com/pydata/xarray/releases/tag/v2024.10.0 + + * Wed Aug 07 2024 yaoxin - 2024.7.0-1 - Update to 2024.7.0 * Move Sphinx directives out of diff --git a/xarray-2024.7.0.tar.gz b/xarray-2024.10.0.tar.gz similarity index 45% rename from xarray-2024.7.0.tar.gz rename to xarray-2024.10.0.tar.gz index d44b237086e0e669856c67123f23377c3f38774c..4fd29c9c9b2cf6fa31f37a94dcfa9a00fc1ecaea 100644 Binary files a/xarray-2024.7.0.tar.gz and b/xarray-2024.10.0.tar.gz differ