Skip to content

Commit

Permalink
fix: allow python 3.12.0 and above
Browse files Browse the repository at this point in the history
  • Loading branch information
pjhartzell committed Jan 28, 2025
1 parent f013ef3 commit 92bfb3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox


@nox.session(python=["3.12"])
@nox.session(python=["3.12", "3.13"])
def tests(session):
session.run("poetry", "install", external=True)
session.run("poetry", "run", "pytest", external=True)
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
packages = [{include = "stapi_fastapi", from="src"}]

[tool.poetry.dependencies]
python = "3.12.*"
python = "^3.12.0"
fastapi = "^0.115.0"
pydantic = "^2.10.1"
geojson-pydantic = "^1.1.1"
Expand Down

0 comments on commit 92bfb3f

Please sign in to comment.