File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ pdfminer.six==20201018;python_version>="3.5"
91
91
coverage == 5.5
92
92
pytest-cov == 2.11.1
93
93
flake8 == 3.7.9 ;python_version < "3.5"
94
- flake8 == 3.9.0 ;python_version >= "3.5"
94
+ flake8 == 3.9.1 ;python_version >= "3.5"
95
95
pyflakes == 2.1.1 ;python_version < "3.5"
96
96
pyflakes == 2.3.1 ;python_version >= "3.5"
97
97
pycodestyle == 2.5.0 ;python_version < "3.5"
Original file line number Diff line number Diff line change 37
37
'>>> Confirm release PUBLISH to PyPI? (yes/no): ' )).lower ().strip ()
38
38
if reply == 'yes' :
39
39
print ("\n *** Checking code health with flake8:\n " )
40
- os .system ("python -m pip install 'flake8==3.9.0 '" )
40
+ os .system ("python -m pip install 'flake8==3.9.1 '" )
41
41
flake8_status = os .system ("flake8 --exclude=temp" )
42
42
if flake8_status != 0 :
43
43
print ("\n WARNING! Fix flake8 issues before publishing to PyPI!\n " )
200
200
# pip install -e .[flake]
201
201
'flake' : [
202
202
'flake8==3.7.9;python_version<"3.5"' ,
203
- 'flake8==3.9.0 ;python_version>="3.5"' ,
203
+ 'flake8==3.9.1 ;python_version>="3.5"' ,
204
204
'pyflakes==2.1.1;python_version<"3.5"' ,
205
205
'pyflakes==2.3.1;python_version>="3.5"' ,
206
206
'pycodestyle==2.5.0;python_version<"3.5"' ,
You can’t perform that action at this time.
0 commit comments