Skip to content

Commit 18ae863

Browse files
authored
Merge pull request #75 from OpenCOMPES/python_313_support
add support for python 3.13
2 parents 14a99fc + 5d6a1cd commit 18ae863

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/testing_multiversion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
22+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2323

2424
steps:
2525
# Check out repo and set up Python

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ authors = [
2121
readme = "README.md"
2222
keywords = ["specs", "phoibos", "arpes"]
2323
license = { file = "LICENSE" }
24-
requires-python = ">=3.8,<3.13"
24+
requires-python = ">=3.8"
2525
classifiers = [
2626
"Programming Language :: Python :: 3.8",
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
"License :: OSI Approved :: MIT License",
3233
"Operating System :: OS Independent",
3334
]

0 commit comments

Comments
 (0)