Skip to content

Commit 6895fbd

Browse files
authored
support python 3.13 (#310)
* test on python 3.13 * officially support python 3.13 * changelog * check doctests on python 3.13 * unpin numpy
1 parent 78e1c70 commit 6895fbd

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/ci-additional.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.12"]
24+
python-version: ["3.13"]
2525

2626
env:
2727
FORCE_COLOR: 3

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
fail-fast: false
5252
matrix:
53-
python-version: ["3.10", "3.11", "3.12"]
53+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5454
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
5555

5656
steps:

ci/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pint!=0.24.0
2-
numpy<2
2+
numpy
33
scipy
44
dask[array]
55
bottleneck

docs/whats-new.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ What's new
66
--------------------
77
- Pass ``sel`` options to the wrapped array (:pull:`304`, :issue:`303`)
88
By `Bhavin Patel <https://github.com/bpatel2107>`_.
9+
- Support python 3.13 (:pull:`310`)
910

1011
0.5 (09 Jun 2025)
1112
------------------

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
1920
"Topic :: Scientific/Engineering",
2021
]
2122
requires-python = ">=3.10"

0 commit comments

Comments
 (0)