Skip to content

Commit 7b4cbbc

Browse files
authored
Remove Python version upper limit (#27)
* Remove upper limit on version * add python 3.13 to github action * addbump versions in tox * update changelog
1 parent 9de5351 commit 7b4cbbc

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/python-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
strategy:
3838
matrix:
39-
python-version: ["3.9", "3.10", "3.11", "3.12"]
39+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4040
package: [openproblems]
4141

4242
steps:

packages/python/openproblems/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
* Add support for python 3.9 (PR #17).
66

7+
* Add support for python 3.13 (PR #18).
78

89
# openproblems core Python v0.1.0
910

packages/python/openproblems/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
]
1212
license = { text = "MIT" }
1313
readme = "README.md"
14-
requires-python = ">= 3.9, < 3.13"
14+
requires-python = ">= 3.9"
1515
dependencies = [
1616
'PyYAML'
1717
]

packages/python/openproblems/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
requires =
33
tox>=4
4-
env_list = lint, type, py{39, 310,311,312}
4+
env_list = lint, type, py{39,310,311,312,313}
55

66
[testenv]
77
description = run unit tests

0 commit comments

Comments
 (0)