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 42
42
os .system ('rm -f dist/*.egg; rm -f dist/*.tar.gz; rm -f dist/*.whl' )
43
43
os .system ('python setup.py sdist bdist_wheel' ) # Create new tar/wheel
44
44
print ("\n *** Installing twine: *** (Required for PyPI uploads)\n " )
45
- os .system ("python -m pip install 'twine>=1.15.0'" )
45
+ os .system ("python -m pip install --upgrade 'twine>=1.15.0'" )
46
46
print ("\n *** Installing tqdm: *** (Required for PyPI uploads)\n " )
47
- os .system ("python -m pip install 'tqdm>=4.47 .0'" )
47
+ os .system ("python -m pip install --upgrade 'tqdm>=4.48 .0'" )
48
48
print ("\n *** Publishing The Release to PyPI: ***\n " )
49
49
os .system ('python -m twine upload dist/*' ) # Requires ~/.pypirc Keys
50
50
print ("\n *** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n " )
You can’t perform that action at this time.
0 commit comments