Skip to content

Commit 133dadd

Browse files
committed
Update deploy dependencies
1 parent a33c2e5 commit 133dadd

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

setup.py

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,23 @@
4545
os.system("rm -f dist/*.egg; rm -f dist/*.tar.gz; rm -f dist/*.whl")
4646
os.system("rm -rf build/bdist.*; rm -rf build/lib")
4747
print("\n*** Installing build: *** (Required for PyPI uploads)\n")
48-
os.system("python -m pip install --upgrade 'build>=0.10.0'")
48+
os.system("python -m pip install --upgrade 'build'")
4949
print("\n*** Installing pkginfo: *** (Required for PyPI uploads)\n")
50-
os.system("python -m pip install --upgrade 'pkginfo>=1.9.6'")
50+
os.system("python -m pip install --upgrade 'pkginfo'")
5151
print("\n*** Installing readme-renderer: *** (For PyPI uploads)\n")
52-
os.system("python -m pip install --upgrade 'readme-renderer>=40.0'")
52+
os.system("python -m pip install --upgrade 'readme-renderer'")
53+
print("\n*** Installing jaraco.classes: *** (For PyPI uploads)\n")
54+
os.system("python -m pip install --upgrade 'jaraco.classes'")
55+
print("\n*** Installing more-itertools: *** (For PyPI uploads)\n")
56+
os.system("python -m pip install --upgrade 'more-itertools'")
57+
print("\n*** Installing zipp: *** (Required for PyPI uploads)\n")
58+
os.system("python -m pip install --upgrade 'zipp'")
59+
print("\n*** Installing importlib-metadata: *** (For PyPI uploads)\n")
60+
os.system("python -m pip install --upgrade 'importlib-metadata'")
61+
print("\n*** Installing keyring, requests-toolbelt: *** (For PyPI)\n")
62+
os.system("python -m pip install --upgrade keyring requests-toolbelt")
5363
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
54-
os.system("python -m pip install --upgrade 'twine>=4.0.2'")
55-
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
56-
os.system("python -m pip install --upgrade tqdm")
64+
os.system("python -m pip install --upgrade 'twine'")
5765
print("\n*** Rebuilding distribution packages: ***\n")
5866
os.system("python -m build") # Create new tar/wheel
5967
print("\n*** Publishing The Release to PyPI: ***\n")

0 commit comments

Comments
 (0)