Skip to content

Commit dfb2a9e

Browse files
committed
add support for python 3.13
1 parent 6b9e1ee commit dfb2a9e

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/tests_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818

1919
fail-fast: false
2020

.github/workflows/tests_ubuntu.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ jobs:
1414
build:
1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818
numpy-pandas-version: [">=1.0, <2.0", ">=2.0, <3.0"]
19-
19+
exclude:
20+
- python-version: "3.13"
21+
numpy-pandas-version: ">=1.0, <2.0"
22+
2023
fail-fast: false
2124

2225
runs-on: ubuntu-latest

.github/workflows/tests_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818

1919
fail-fast: false
2020

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers=[
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
"License :: OSI Approved :: MIT License",
2930
"Operating System :: OS Independent",
3031
"Topic :: Scientific/Engineering :: Information Analysis",

0 commit comments

Comments
 (0)