Skip to content

Commit

Permalink
Version 0.10.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Mar 28, 2022
1 parent 2fad97a commit 4e3f9d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions django_stubs_ext/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="django-stubs-ext",
version="0.3.1",
version="0.4.0",
description="Monkey-patching and extensions for django-stubs",
long_description=readme,
long_description_content_type="text/markdown",
Expand All @@ -30,7 +30,6 @@
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def find_stub_files(name: str) -> List[str]:
result = []
for root, dirs, files in os.walk(name):
for root, _dirs, files in os.walk(name):
for file in files:
if file.endswith(".pyi"):
if os.path.sep in root:
Expand All @@ -23,7 +23,7 @@ def find_stub_files(name: str) -> List[str]:
dependencies = [
"mypy>=0.930,<0.950",
"django",
"django-stubs-ext>=0.3.0",
"django-stubs-ext>=0.4.0",
"tomli",
# Types:
"typing-extensions",
Expand All @@ -33,7 +33,7 @@ def find_stub_files(name: str) -> List[str]:

setup(
name="django-stubs",
version="1.10.0",
version="1.10.1",
description="Mypy stubs for Django",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 4e3f9d6

Please sign in to comment.