Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 92bfb3f

Browse files
committed
fix: allow python 3.12.0 and above
1 parent f013ef3 commit 92bfb3f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nox
22

33

4-
@nox.session(python=["3.12"])
4+
@nox.session(python=["3.12", "3.13"])
55
def tests(session):
66
session.run("poetry", "install", external=True)
77
session.run("poetry", "run", "pytest", external=True)

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
packages = [{include = "stapi_fastapi", from="src"}]
1010

1111
[tool.poetry.dependencies]
12-
python = "3.12.*"
12+
python = "^3.12.0"
1313
fastapi = "^0.115.0"
1414
pydantic = "^2.10.1"
1515
geojson-pydantic = "^1.1.1"

0 commit comments

Comments
 (0)