Skip to content

Commit

Permalink
Update to Python 3.12
Browse files Browse the repository at this point in the history
Updates the Python version to the latest(3.12).

Fixes #414

Signed-off-by: Rémy Greinhofer <remy.greinhofer@gmail.com>
  • Loading branch information
rgreinho committed Jan 21, 2024
1 parent b488c4a commit 5fb637c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 77 deletions.
73 changes: 3 additions & 70 deletions poetry.lock

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

18 changes: 11 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
license = "MIT"

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.12, <4.0"
aiohttp = "^3.9.1"
boto3 = "^1.28.85"
geopandas = "^0.14.1"
Expand Down Expand Up @@ -106,15 +106,19 @@ select = ["D"]
convention = "pep257"

[tool.mypy]
strict = "true"
strict = true

[[tool.mypy.overrides]]
module = ["brokenspoke_analyzer.pyrosm.*"]
ignore_errors = "true"
module = [
"brokenspoke_analyzer.pyrosm.*",
"boto3",
"geopandas",
"osmnx",
"shapely",
"us",
]
ignore_errors = true

[[tool.mypy.overrides]]
module = ["boto3", "geopandas", "osmnx", "shapely", "us"]
ignore_missing_imports = "true"

[tool.sqlfluff.core]
dialect = "postgres"
Expand Down

0 comments on commit 5fb637c

Please sign in to comment.