Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
34ed5c25f9
!10 [sync] PR-8: Update package to version 2024.2.0
From: @openeuler-sync-bot 
Reviewed-by: @shinwell_hu 
Signed-off-by: @shinwell_hu
2024-03-14 07:31:07 +00:00
yueyuankun
3fcd89890c Update package to version 2024.2.0
(cherry picked from commit 8b6750f28158e46040023ee028e1ef6d17ede2c4)
2024-03-13 14:38:01 +08:00
openeuler-ci-bot
bfb2055f6a
!7 Update package to version 2023.12.0
From: @jxy_git 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-12-28 09:01:30 +00:00
jxy_git
5cc367d90d Update package to version 2023.12.0 2023-12-27 15:06:22 +08:00
openeuler-ci-bot
29c1ef3b91
!6 Upgrade to latest release [python-xarray -> 6.0]
From: @Jason_828e 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-07-07 07:30:04 +00:00
Jason_828e
7012906a57 updated to 6.0 version 2023-07-04 05:32:57 +08:00
openeuler-ci-bot
d46e9f21fe
!5 Upgrade to latest release [python-xarray -> 2023.5.0]
From: @Wangjunqi123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-05-19 09:36:29 +00:00
Wangjunqi123
2917ff5dfd update version to 2023.5.0 2023-05-19 14:43:13 +08:00
openeuler-ci-bot
5770121ff0
!4 Update package to version 2023.2.0
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-05-05 09:55:53 +00:00
wubijie
72e865516b Update package to version 2023.2.0 2023-02-16 13:59:17 +08:00
3 changed files with 31 additions and 58 deletions

View File

@ -1,55 +1,30 @@
%global _empty_manifest_terminate_build 0
Name: python-xarray
Version: 2022.11.0
Version: 2024.2.0
Release: 1
Summary: N-D labeled arrays and datasets in Python
License: Apache-2.0
URL: https://github.com/pydata/xarray
Source0: https://files.pythonhosted.org/packages/47/26/53b4d9ce691f73ab17abaeb66c53dcda5a799ba1b1f32f21fb84440e7acf/xarray-2022.11.0.tar.gz
Source0: https://files.pythonhosted.org/packages/85/4a/55843308a16a89ffa67e672fe0508367b541c669018a083b15f900a3805c/xarray-2024.2.0.tar.gz
BuildArch: noarch
Requires: python3-numpy
Requires: python3-pandas
Requires: python3-packaging
Requires: python3-scipy
Requires: python3-bottleneck
Requires: python3-numbagg
Requires: python3-flox
Requires: python3-netCDF4
Requires: python3-h5netcdf
Requires: python3-pydap
Requires: python3-zarr
Requires: python3-fsspec
Requires: python3-cftime
Requires: python3-rasterio
Requires: python3-cfgrib
Requires: python3-pooch
Requires: python3-dask[complete]
Requires: python3-matplotlib
Requires: python3-seaborn
Requires: python3-nc-time-axis
Requires: python3-sphinx-autosummary-accessors
Requires: python3-sphinx-rtd-theme
Requires: python3-ipython
Requires: python3-ipykernel
Requires: python3-jupyter-client
Requires: python3-nbsphinx
Requires: python3-scanpydoc
%description
xarray introduces labels in the form of dimensions, coordinates and attributes
on top of raw NumPy-like arrays, which allows for a more intuitive, more
concise, and less error-prone developer experience.
concise, and less error-prone developer experience.
%package -n python3-xarray
Summary: N-D labeled arrays and datasets in Python
Provides: python-xarray = %{version}-%{release}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-setuptools
Requires: python3-numpy
Requires: python3-pandas
Requires: python3-packaging
%description -n python3-xarray
xarray introduces labels in the form of dimensions, coordinates and attributes
on top of raw NumPy-like arrays, which allows for a more intuitive, more
concise, and less error-prone developer experience.
concise, and less error-prone developer experience.
%package help
Summary: Development documents and examples for xarray
@ -57,7 +32,7 @@ Provides: python3-xarray-doc
%description help
xarray introduces labels in the form of dimensions, coordinates and attributes
on top of raw NumPy-like arrays, which allows for a more intuitive, more
concise, and less error-prone developer experience.
concise, and less error-prone developer experience.
%prep
%autosetup -n xarray-%{version}
@ -66,40 +41,38 @@ concise, and less error-prone developer experience.
%py3_build
%install
%py3_install
%py3_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
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi
if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi
%files -n python3-xarray -f filelist.lst
%dir %{python3_sitelib}/*
%files -n python3-xarray
%{python3_sitelib}/*
%files help -f doclist.lst
%files help
%{_docdir}/*
%changelog
* Tue Mar 05 2024 yueyuankun <yueyuankun@kylinos.cn> - 2024.2.0-1
- Update package to version 2024.2.0
* Wed Dec 27 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 2023.12.0-1
- Update package to version 2023.12.0
* Wed Jul 05 2023 chenzixuan <chenzixuan@kylinos.cn> - 2023.6.0-1
- Update package to version 2023.6.0
* Fri May 19 2023 wangjunqi <wangjunqi@kylinos.cn> - 2023.5.0-1
- Update package to version 2023.5.0
* Thu Feb 16 2023 wubijie <wubijie@kylinos.cn> - 2023.2.0-1
- Update package to version 2023.2.0
* Mon Nov 21 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 2022.11.0-1
- Update package to version 2022.11.0

Binary file not shown.

BIN
xarray-2024.2.0.tar.gz Normal file

Binary file not shown.