Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/.tests-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: python:${{ matrix.python-version }}
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Global options:

[mypy]
python_version = 3.9
python_version = 3.10
disallow_untyped_defs = True
ignore_missing_imports = True
8 changes: 4 additions & 4 deletions poetry.lock

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

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

requires-python = ">=3.9"
requires-python = ">=3.10"

dependencies = [
"cachecontrol>=0.14.3",
Expand Down
2 changes: 1 addition & 1 deletion staticmap3/staticmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def _draw_base_layer(self, image: "Image.Image") -> None:
for tile in tiles
]

for tile, future in zip(tiles, futures):
for tile, future in zip(tiles, futures, strict=True):
x, y, url = tile

try:
Expand Down
Loading