File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,10 @@ coverage==6.4.2;python_version>="3.7"
126
126
pytest-cov == 2.12.1 ;python_version < "3.6"
127
127
pytest-cov == 3.0.0 ;python_version >= "3.6"
128
128
flake8 == 3.7.9 ;python_version < "3.6"
129
- flake8 == 5.0.2 ;python_version >= "3.6"
129
+ flake8 == 5.0.4 ;python_version >= "3.6"
130
130
mccabe == 0.6.1 ;python_version < "3.6"
131
131
mccabe == 0.7.0 ;python_version >= "3.6"
132
132
pyflakes == 2.1.1 ;python_version < "3.6"
133
133
pyflakes == 2.5.0 ;python_version >= "3.6"
134
134
pycodestyle == 2.5.0 ;python_version < "3.6"
135
- pycodestyle == 2.9.0 ;python_version >= "3.6"
135
+ pycodestyle == 2.9.1 ;python_version >= "3.6"
Original file line number Diff line number Diff line change 36
36
reply = str (input_method (confirm_text )).lower ().strip ()
37
37
if reply == "yes" :
38
38
print ("\n *** Checking code health with flake8:\n " )
39
- os .system ("python -m pip install 'flake8==5.0.2 '" )
39
+ os .system ("python -m pip install 'flake8==5.0.4 '" )
40
40
flake8_status = os .system ("flake8 --exclude=recordings,temp" )
41
41
if flake8_status != 0 :
42
42
print ("\n WARNING! Fix flake8 issues before publishing to PyPI!\n " )
256
256
# Usage: flake8
257
257
"flake" : [
258
258
'flake8==3.7.9;python_version<"3.6"' ,
259
- 'flake8==5.0.2 ;python_version>="3.6"' ,
259
+ 'flake8==5.0.4 ;python_version>="3.6"' ,
260
260
'mccabe==0.6.1;python_version<"3.6"' ,
261
261
'mccabe==0.7.0;python_version>="3.6"' ,
262
262
'pyflakes==2.1.1;python_version<"3.6"' ,
263
263
'pyflakes==2.5.0;python_version>="3.6"' ,
264
264
'pycodestyle==2.5.0;python_version<"3.6"' ,
265
- 'pycodestyle==2.9.0 ;python_version>="3.6"' ,
265
+ 'pycodestyle==2.9.1 ;python_version>="3.6"' ,
266
266
],
267
267
# pip install -e .[pdfminer]
268
268
"pdfminer" : [
You can’t perform that action at this time.
0 commit comments