Skip to content

Commit 9c93d94

Browse files
committed
update: support Python 3.10+
1 parent 4fa25f4 commit 9c93d94

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Erdem Ozkol <github@erdemozkol.com>"]
66
readme = "README.md"
77

88
[tool.poetry.dependencies]
9-
python = "^3.12"
9+
python = "^3.10"
1010
django = ">=4.0,<7.0"
1111

1212
[tool.poetry.group.dev.dependencies]
@@ -26,7 +26,7 @@ requires = ["poetry-core"]
2626
build-backend = "poetry.core.masonry.api"
2727

2828
[tool.black]
29-
target-version = ["py311"]
29+
target-version = ["py310"]
3030
extend-exclude = "(/dist|/.venv|/venv|/env|/build)/"
3131

3232
[tool.isort]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
author_email="mapwidgets@erdemozkol.com",
2222
url="https://github.com/erdem/django-map-widgets",
2323
license="MIT",
24+
python_requires=">=3.10",
2425
packages=find_packages(exclude=("demo", "tests", "docs")),
2526
include_package_data=True,
2627
classifiers=[

0 commit comments

Comments
 (0)