Update Python dependencies

This commit is contained in:
Michael Mintz 2020-12-05 01:59:34 -05:00
parent 164df92f04
commit bee946c311
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
regex>=2020.11.13
tqdm>=4.54.0
tqdm>=4.54.1
livereload==2.6.3;python_version>="3.6"
Markdown==3.3.3
readme-renderer==28.0

View File

@ -3,7 +3,7 @@ packaging>=20.7
setuptools>=44.1.1;python_version<"3.5"
setuptools>=50.3.2;python_version>="3.5"
setuptools-scm>=4.1.2
wheel>=0.36.0
wheel>=0.36.1
attrs>=20.3.0
certifi>=2020.11.8
six==1.15.0

View File

@ -49,7 +49,7 @@ if sys.argv[-1] == 'publish':
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
os.system("python -m pip install --upgrade 'tqdm>=4.54.0'")
os.system("python -m pip install --upgrade 'tqdm>=4.54.1'")
print("\n*** Publishing The Release to PyPI: ***\n")
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@ -107,7 +107,7 @@ setup(
'setuptools>=44.1.1;python_version<"3.5"',
'setuptools>=50.3.2;python_version>="3.5"',
'setuptools-scm',
'wheel>=0.36.0',
'wheel>=0.36.1',
'attrs>=20.3.0',
'certifi>=2020.11.8',
'six',