Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
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.12"
python-version: "3.13"
requirements: latest
- os: windows
python-version: "3.8"
requirements: latest
- os: windows
python-version: "3.12"
python-version: "3.13"
requirements: latest
# Test on minimal requirements
- os: ubuntu
Expand All @@ -54,7 +54,7 @@ jobs:
requirements: minimal
# Test on nightly builds of requirements
- os: ubuntu
python-version: "3.12"
python-version: "3.13"
requirements: upstream

steps:
Expand Down Expand Up @@ -83,9 +83,6 @@ jobs:
- name: Install nightly builds
if: ${{ matrix.requirements == 'upstream' }}
run: |
# Pick up https://github.com/mamba-org/mamba/pull/2903
mamba install -n base 'mamba>=1.5.2'

mamba uninstall --force numpy pandas scipy pyarrow
python -m pip install --no-deps --pre --prefer-binary \
--extra-index-url https://pypi.fury.io/arrow-nightlies/ \
Expand Down
1 change: 1 addition & 0 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ v0.7.0 (unreleased)
-------------------
- ``interpolate``: Added support for timedelta coordinates;
fixed support for datetime coordinates other than ``M8[ns]`` in xarray 2025.1.2.
- Added formal support for Python 3.13 (but the previous version works fine too)


.. _whats-new.0.6.0:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
dependencies = [
Expand Down
Loading