Skip to content

Commit

Permalink
Version 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Sep 15, 2019
1 parent 3ba960d commit 824b219
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ python:

env:
- DJANGO_VERSION: "'Django~=1.11'"
- DJANGO_VERSION: "'Django~=2.0'"
- DJANGO_VERSION: "'Django~=2.1'"
- DJANGO_VERSION: "'Django~=2.2'"

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Improvements:
- Adds `mypy` support
- Adds `wemake-python-styleguide` support
- Adds extra CI checks: `safety`, `doc8`
- Adds `py.typed` file to package type information


## 0.3.1
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
Expand Down
Empty file added split_settings/py.typed
Empty file.
4 changes: 2 additions & 2 deletions split_settings/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
_INCLUDED_FILE = '__included_file__'


def optional(filename):
def optional(filename: str) -> str:
"""
This functions is used for compatibility reasons.
Expand All @@ -43,7 +43,7 @@ class _Optional(str): # noqa: WPS600
"""


def include(*args, **kwargs): # noqa: WPS210, C901
def include(*args: str, **kwargs) -> None: # noqa: WPS210, C901
"""
Used for including Django project settings from multiple files.
Expand Down

0 comments on commit 824b219

Please sign in to comment.