Skip to content

Commit 5f28367

Browse files
committed
python 3.13
1 parent bb064ad commit 5f28367

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
strategy:
4040
matrix:
41-
python-versions: ['3.9', '3.10', '3.11', '3.12']
41+
python-versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
4242

4343
steps:
4444
- uses: actions/checkout@v4
@@ -65,7 +65,7 @@ jobs:
6565

6666
strategy:
6767
matrix:
68-
python-versions: ['3.9', '3.10', '3.11', '3.12']
68+
python-versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
6969

7070
steps:
7171
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,22 @@ classifiers = [
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1819
]
1920

2021
[tool.poetry.dependencies]
2122
python = "^3.8"
22-
numpy = "^1.24"
23+
numpy = ">=1.24,<=2.2"
2324
scipy = "^1.10"
2425
sympy = "^1.12"
2526
cvxpy = "^1.3"
2627
matplotlib = "^3.7"
27-
numba = "^0.59"
28+
numba = ">=0.59,<=0.61"
2829
pycddlib-standalone = {version = "^3.0", optional = true}
2930

3031
[tool.poetry.dev-dependencies]
3132
ipython = "^8.5"
32-
numba = "^0.59"
33+
numba = ">=0.59,<=0.61"
3334

3435
[tool.poetry.extras]
3536
dev = ["pycddlib-standalone"]

0 commit comments

Comments
 (0)