Skip to content

Commit

Permalink
Bump xarray and pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Jan 12, 2024
1 parent a0c0d5e commit 28d07c0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu]
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
requirements: [latest]
include:
# Test on macos and windows (first and last version of python only)
- os: macos
python-version: '3.8'
requirements: latest
- os: macos
python-version: '3.10'
python-version: '3.12'
requirements: latest
- os: windows
python-version: '3.8'
requirements: latest
- os: windows
python-version: '3.10'
python-version: '3.12'
requirements: latest
# Test on minimal requirements
- os: ubuntu
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ repos:
additional_dependencies:
# Typed libraries
- numpy
- pandas==1.4
- pandas
- pshell
- xarray==2022.3.0
- xarray
6 changes: 3 additions & 3 deletions ci/requirements-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: ndcsv-docs
channels:
- conda-forge
dependencies:
- python=3.10
- python=3.12
- sphinx
- sphinx_rtd_theme
- numpy
- pandas=1.4
- pandas
- pshell
- xarray=2022.3.0
- xarray
4 changes: 2 additions & 2 deletions ci/requirements-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ dependencies:
- pytest
- pytest-cov
- numpy
- pandas=1.4
- pandas
- pshell
- xarray=2022.3.0
- xarray
3 changes: 3 additions & 0 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ What's New

v1.2.0 (unreleased)
-------------------
- Added support for Python 3.11 and 3.12
- Added support for xarray >=2022.6.0
- Added support for pandas >=1.5


.. _whats-new.1.1.0:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ include_package_data = True
python_requires = >=3.8
install_requires =
numpy >=1.14
pandas >=0.24,<1.5
pandas >=0.24
pshell >=1.0
xarray >=0.14,<2022.6.0
xarray >=0.14
setup_requires = setuptools_scm

[options.package_data]
Expand Down

0 comments on commit 28d07c0

Please sign in to comment.