Skip to content

Commit 4e3f9d6

Browse files
committed
Version 0.10.1 release
1 parent 2fad97a commit 4e3f9d6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Diff for: django_stubs_ext/setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="django-stubs-ext",
15-
version="0.3.1",
15+
version="0.4.0",
1616
description="Monkey-patching and extensions for django-stubs",
1717
long_description=readme,
1818
long_description_content_type="text/markdown",
@@ -30,7 +30,6 @@
3030
classifiers=[
3131
"License :: OSI Approved :: MIT License",
3232
"Operating System :: OS Independent",
33-
"Programming Language :: Python :: 3.6",
3433
"Programming Language :: Python :: 3.7",
3534
"Programming Language :: Python :: 3.8",
3635
"Programming Language :: Python :: 3.9",

Diff for: setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def find_stub_files(name: str) -> List[str]:
99
result = []
10-
for root, dirs, files in os.walk(name):
10+
for root, _dirs, files in os.walk(name):
1111
for file in files:
1212
if file.endswith(".pyi"):
1313
if os.path.sep in root:
@@ -23,7 +23,7 @@ def find_stub_files(name: str) -> List[str]:
2323
dependencies = [
2424
"mypy>=0.930,<0.950",
2525
"django",
26-
"django-stubs-ext>=0.3.0",
26+
"django-stubs-ext>=0.4.0",
2727
"tomli",
2828
# Types:
2929
"typing-extensions",
@@ -33,7 +33,7 @@ def find_stub_files(name: str) -> List[str]:
3333

3434
setup(
3535
name="django-stubs",
36-
version="1.10.0",
36+
version="1.10.1",
3737
description="Mypy stubs for Django",
3838
long_description=readme,
3939
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)