Skip to content

Commit

Permalink
Lift Python version upper limit
Browse files Browse the repository at this point in the history
  • Loading branch information
soininen committed Apr 2, 2024
1 parent 45fc13f commit 559898e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-22.04]
python-version: [3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v4
with:
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ description = "A package to run Spine workflows."
keywords = ["energy system modelling", "workflow", "optimisation", "database"]
readme = {file = "README.md", content-type = "text/markdown"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
requires-python = ">=3.8.1, <3.12"
requires-python = ">=3.8.1"
dependencies = [
# dagster >= 0.12.9 requires alembic that is incompatible with spinedb_api
"dagster>=0.12.6, <0.12.9",
Expand Down Expand Up @@ -51,10 +51,10 @@ spine_engine = ["execution_managers/spine_repl.jl"]

[tool.setuptools.packages.find]
exclude = [
"bin*",
"docs*",
"fig*",
"tests*",
"bin*",
"docs*",
"fig*",
"tests*",
]

[tool.coverage.run]
Expand Down

0 comments on commit 559898e

Please sign in to comment.