Skip to content

Commit 32d270d

Browse files
committed
Bump version
1 parent 2e92d87 commit 32d270d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.9",
2020
"Programming Language :: Python :: 3.10",
2121
"Topic :: Software Development :: Libraries :: Python Modules",
22-
"Development Status :: 3 - Alpha"
22+
"Development Status :: 3 - Alpha",
2323
]
2424
dependencies = ["django >= 3.0"]
2525
dynamic = ["version", "description"]
@@ -33,3 +33,6 @@ Home = "https://github.com/tkrapp/django-typed-app-settings"
3333

3434
[project.optional-dependencies]
3535
dev = ["black"]
36+
37+
[tool.isort]
38+
profile = "black"

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-post2"
3+
__version__ = "0.2.post2"
44

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

tests/test_typed_app_settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
from django.conf import settings as django_settings
1010
from django.core.exceptions import ImproperlyConfigured
11+
1112
from typed_app_settings import typed_settings_dict, typed_settings_prefix, undefined
1213

1314
django_settings.configure(

0 commit comments

Comments
 (0)