Skip to content

Commit 5110c4a

Browse files
committed
Update deploy requirements
1 parent c8059bf commit 5110c4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
os.system('rm -f dist/*.egg; rm -f dist/*.tar.gz; rm -f dist/*.whl')
4343
os.system('python setup.py sdist bdist_wheel') # Create new tar/wheel
4444
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'")
4646
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'")
4848
print("\n*** Publishing The Release to PyPI: ***\n")
4949
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
5050
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")

0 commit comments

Comments
 (0)