File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 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==4 .0.1 '" )
39
+ os .system ("python -m pip install 'flake8==5 .0.2 '" )
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 " )
47
47
os .system ("rm -f dist/*.egg; rm -f dist/*.tar.gz; rm -f dist/*.whl" )
48
48
os .system ("rm -rf build/bdist.*; rm -rf build/lib" )
49
49
print ("\n *** Installing build: *** (Required for PyPI uploads)\n " )
50
- os .system ("python -m pip install --upgrade 'build>=0.7 .0'" )
50
+ os .system ("python -m pip install --upgrade 'build>=0.8 .0'" )
51
51
print ("\n *** Installing twine: *** (Required for PyPI uploads)\n " )
52
52
os .system ("python -m pip install --upgrade 'twine>=4.0.1'" )
53
53
print ("\n *** Installing tqdm: *** (Required for PyPI uploads)\n " )
You can’t perform that action at this time.
0 commit comments