Skip to content

Commit e429077

Browse files
authored
Merge pull request #573 from OpenCOMPES/python_313_support
add python 3.13
2 parents f75cfe2 + ed887db commit e429077

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/testing_multiversion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Using matrix strategy
1818
strategy:
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121

2222
steps:
2323
# Check out repo and set up Python

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ authors = [
1919
readme = "README.md"
2020
keywords = ["sed", "mpes", "flash", "arpes"]
2121
license = { file = "LICENSE" }
22-
requires-python = ">=3.9,<3.13"
22+
requires-python = ">=3.9"
2323
classifiers = [
2424
"Programming Language :: Python :: 3.9",
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
]
@@ -40,7 +41,7 @@ dependencies = [
4041
"matplotlib>=3.5.1",
4142
"natsort>=8.1.0",
4243
"numba>=0.55.1",
43-
"numpy>=1.18,<2.0",
44+
"numpy>=1.18",
4445
"pandas>=1.4.1",
4546
"photutils<2.0",
4647
"psutil>=5.9.0",
@@ -54,7 +55,7 @@ dependencies = [
5455
"tqdm>=4.62.3",
5556
"xarray>=0.20.2",
5657
"joblib>=1.2.0",
57-
"pyarrow>=14.0.1,<17.0",
58+
"pyarrow>=14.0.1",
5859
"pydantic>=2.8.2",
5960
]
6061

0 commit comments

Comments
 (0)