Skip to content

Commit

Permalink
enable compatiblity to Python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-richard committed Mar 9, 2024
1 parent 126c560 commit f077e38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.10', '3.11']
python-version: [ '3.9', '3.10', '3.11', '3.12']
os: [ macos-latest, windows-2019, ubuntu-latest ]

steps:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
Expand All @@ -50,7 +51,7 @@ dependencies = [
"tqdm<4.66.0,>=4.62.3",
"xarray==2023.9.0",
]
requires-python = ">=3.9,<3.12"
requires-python = ">=3.9,<=3.12"

[project.optional-dependencies]
dev = ["black", "pip-tools"]
Expand Down

0 comments on commit f077e38

Please sign in to comment.