File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = "django-stubs-ext" ,
15
- version = "0.3.1 " ,
15
+ version = "0.4.0 " ,
16
16
description = "Monkey-patching and extensions for django-stubs" ,
17
17
long_description = readme ,
18
18
long_description_content_type = "text/markdown" ,
30
30
classifiers = [
31
31
"License :: OSI Approved :: MIT License" ,
32
32
"Operating System :: OS Independent" ,
33
- "Programming Language :: Python :: 3.6" ,
34
33
"Programming Language :: Python :: 3.7" ,
35
34
"Programming Language :: Python :: 3.8" ,
36
35
"Programming Language :: Python :: 3.9" ,
Original file line number Diff line number Diff line change 7
7
8
8
def find_stub_files (name : str ) -> List [str ]:
9
9
result = []
10
- for root , dirs , files in os .walk (name ):
10
+ for root , _dirs , files in os .walk (name ):
11
11
for file in files :
12
12
if file .endswith (".pyi" ):
13
13
if os .path .sep in root :
@@ -23,7 +23,7 @@ def find_stub_files(name: str) -> List[str]:
23
23
dependencies = [
24
24
"mypy>=0.930,<0.950" ,
25
25
"django" ,
26
- "django-stubs-ext>=0.3 .0" ,
26
+ "django-stubs-ext>=0.4 .0" ,
27
27
"tomli" ,
28
28
# Types:
29
29
"typing-extensions" ,
@@ -33,7 +33,7 @@ def find_stub_files(name: str) -> List[str]:
33
33
34
34
setup (
35
35
name = "django-stubs" ,
36
- version = "1.10.0 " ,
36
+ version = "1.10.1 " ,
37
37
description = "Mypy stubs for Django" ,
38
38
long_description = readme ,
39
39
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments