Skip to content

Commit e32dd79

Browse files
committed
MAINT: added support for Python 3.13 (closes #1128)
1 parent 9916708 commit e32dd79

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
# os: ["ubuntu-latest", "macos-latest", "windows-latest"]
30-
python-version: ['3.9', '3.10', '3.11', '3.12']
30+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3131

3232
defaults:
3333
run:

doc/source/changes/version_0_35.rst.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Backward incompatible changes
3131
New features
3232
^^^^^^^^^^^^
3333

34+
* added support for Python 3.13 (closes :issue:`1128`).
35+
3436
* :py:obj:`Array.plot()` now has an ``animate`` argument to produce animated
3537
plots. The argument takes an axis (it also supports several axes but that is
3638
rarely useful) and will create an animation, with one image per label of that

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ def readlocal(fname):
3030
'Intended Audience :: Developers',
3131
'Programming Language :: Python',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.8',
3433
'Programming Language :: Python :: 3.9',
3534
'Programming Language :: Python :: 3.10',
3635
'Programming Language :: Python :: 3.11',
3736
'Programming Language :: Python :: 3.12',
37+
'Programming Language :: Python :: 3.13',
3838
'Topic :: Scientific/Engineering',
3939
'Topic :: Software Development :: Libraries',
4040
]

0 commit comments

Comments
 (0)