Skip to content

Commit 2fe1187

Browse files
committed
Add python-requires to pyproject.toml. Bump version
1 parent e18f20a commit 2fe1187

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ dynamic = ["version", "description"]
2626
license = {file = "LICENSE"}
2727
name = "typed_app_settings"
2828
readme = "README.md"
29+
requires-python = ">=3.8"
2930

3031
[project.urls]
3132
Home = "https://github.com/tkrapp/django-typed-app-settings"

src/typed_app_settings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A package to create and use app specific settings with type hints."""
22

3-
__version__ = "0.2"
3+
__version__ = "0.2-post1"
44

55
from ._lib import typed_settings_prefix, typed_settings_dict, UndefinedValue, undefined
66

0 commit comments

Comments
 (0)