开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
forked from src-openEuler/python-xarray
关闭
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (11)
标签 (6)
master
openEuler-25.09
openEuler-25.03
openEuler-24.09
openEuler-24.03-LTS-Next
openEuler-24.03-LTS-SP1
openEuler-24.03-LTS-SP2
openEuler-24.03-LTS-SP3
openEuler-24.03-LTS
20.09
openEuler-20.09
openEuler-25.09-release
openEuler-24.03-LTS-SP2-release
openEuler-25.03-release
openEuler-24.03-LTS-SP1-release
openEuler-24.09-release
openEuler-24.03-LTS-release
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (11)
标签 (6)
master
openEuler-25.09
openEuler-25.03
openEuler-24.09
openEuler-24.03-LTS-Next
openEuler-24.03-LTS-SP1
openEuler-24.03-LTS-SP2
openEuler-24.03-LTS-SP3
openEuler-24.03-LTS
20.09
openEuler-20.09
openEuler-25.09-release
openEuler-24.03-LTS-SP2-release
openEuler-25.03-release
openEuler-24.03-LTS-SP1-release
openEuler-24.09-release
openEuler-24.03-LTS-release
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (11)
标签 (6)
master
openEuler-25.09
openEuler-25.03
openEuler-24.09
openEuler-24.03-LTS-Next
openEuler-24.03-LTS-SP1
openEuler-24.03-LTS-SP2
openEuler-24.03-LTS-SP3
openEuler-24.03-LTS
20.09
openEuler-20.09
openEuler-25.09-release
openEuler-24.03-LTS-SP2-release
openEuler-25.03-release
openEuler-24.03-LTS-SP1-release
openEuler-24.09-release
openEuler-24.03-LTS-release
python-xarray
/
python-xarray.spec
python-xarray
/
python-xarray.spec
python-xarray.spec 6.18 KB
一键复制 编辑 原始数据 按行查看 历史
lipengyu 提交于 2025年10月23日 09:57 +08:00 . update to 2025年10月1日
%global _empty_manifest_terminate_build 0
Name: python-xarray
Version: 2025年10月1日
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/source/x/xarray/xarray-%{version}.tar.gz
BuildArch: noarch
%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.
%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-pip python3-wheel
BuildRequires: python3-hatchling python3-hatch-vcs
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.
%package help
Summary: Development documents and examples for xarray
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.
%prep
%autosetup -n xarray-%{version}
%build
%pyproject_build
%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
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
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
%{python3_sitelib}/*
%files help
%{_docdir}/*
%changelog
* Thu Oct 23 2025 lipengyu <lipengyu@kylinos.cn> - 2025年10月1日-1
- Update package to version 2025年10月1日
- Reverts a breaking change to Xarray's preferred netCDF backend
* Fri Sep 5 2025 lilu <lilu@kylinos.cn> - 202590-1
- Update package to version 202590
- Support rechunking by SeasonResampler for seasonal data analysis
- Add convenience methods to Coordinates
- Fix contour plots not normalizing the colors correctly when using for example logarithmic norms
* Wed Aug 20 2025 zhang_wenyu <zhang_wenyu@hoperun.com> - 202580-1
- Update package to version 202580
* Improve warning message and tests for timedelta decoding
* Call super().__init__() in st.SearchStrategy subclasses
* Fix convert calendar with different dimension name
* Restructure API documentation into organized sections
* Fix DatetimeAccessor.strftime errors due to upstream changes
* Fix transpose of BoolTypeArray, NativeEndiannessArray
* interp - Prefer broadcast over reindex when possible
* Update documentation to copy tags when forking, so versioning is reasonable
* Thu Mar 27 2025 openeuler_bot <infra@openeuler.sh> - 202530-1
- This release drops support for Python 3.9, and adds support for grouping by multiple arrays (version: v2024.09.0).
- This release extends the API for groupby operations with various grouper objects, and includes improvements to the documentation and numerous bugfixes (version: v2024.07.0).
- This release brings compatibility with numpy 2 and various performance optimizations (version: v2024.06.0).
- This release brings tested support for Python 3.13, support for reading Zarr V3 datasets into a DataTree, significant improvements to datetime & timedelta encoding/decoding (version: v2025.03.0).
* Fri Oct 25 2024 caiyuxin <caiyuxin@kylinos.cn> - 2024100-1
- Update package to version 2024100
* 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 <yao_xin001@hoperun.com> - 202470-1
- Update to 202470
* Move Sphinx directives out of
* Add test for rechunking to a size string
* Support duplicate dimensions in .chunk
* Split out distributed writes in zarr docs
* groupby: remove some internal use of IndexVariable
* Remove mypy exclusions for a couple more libraries
* switch to datetime unit "D"
* Fix example code formatting for CachingFileManager
* Change np.core.defchararray to np.char
* Fix dark-theme in html[data-theme=dark]-tags
* Fix reductions for np.complex_ dtypes with numbagg
Pelase see log : https://github.com/pydata/xarray/releases
* Tue Mar 05 2024 yueyuankun <yueyuankun@kylinos.cn> - 202420-1
- Update package to version 202420
* Wed Dec 27 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 2023120-1
- Update package to version 2023120
* Wed Jul 05 2023 chenzixuan <chenzixuan@kylinos.cn> - 202360-1
- Update package to version 202360
* Fri May 19 2023 wangjunqi <wangjunqi@kylinos.cn> - 202350-1
- Update package to version 202350
* Thu Feb 16 2023 wubijie <wubijie@kylinos.cn> - 202320-1
- Update package to version 202320
* Mon Nov 21 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 2022110-1
- Update package to version 2022110
* Tue Sep 27 2022 guozhengxin <guozhengxin@kylinos.cn> - 202260-1
- Upgrade package to version 202260
* Thu Dec 02 2021 Python_Bot <Python_Bot@openeuler.org> - 0.20.1-1
- Package Init
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lipengyu001/python-xarray.git
git@gitee.com:lipengyu001/python-xarray.git
lipengyu001
python-xarray
python-xarray
master
点此查找更多帮助

搜索帮助

仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /