|
50 | 50 | print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
|
51 | 51 | os.system("python -m pip install --upgrade 'twine>=1.15.0'")
|
52 | 52 | print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
|
53 |
| - os.system("python -m pip install --upgrade 'tqdm>=4.60.0'") |
| 53 | + os.system("python -m pip install --upgrade 'tqdm>=4.61.0'") |
54 | 54 | print("\n*** Publishing The Release to PyPI: ***\n")
|
55 | 55 | os.system("python -m twine upload dist/*") # Requires ~/.pypirc Keys
|
56 | 56 | print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
|
|
114 | 114 | python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
|
115 | 115 | install_requires=[
|
116 | 116 | 'pip>=20.3.4;python_version<"3.6"',
|
117 |
| - 'pip>=21.1.1;python_version>="3.6"', |
| 117 | + 'pip>=21.1.2;python_version>="3.6"', |
118 | 118 | "packaging>=20.9",
|
119 | 119 | "typing-extensions>=3.10.0.0",
|
120 | 120 | 'setuptools>=44.1.1;python_version<"3.5"',
|
121 | 121 | 'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
|
122 |
| - 'setuptools>=56.2.0;python_version>="3.6"', |
| 122 | + 'setuptools>=57.0.0;python_version>="3.6"', |
123 | 123 | 'setuptools-scm==5.0.2;python_version<"3.6"',
|
124 | 124 | 'setuptools-scm>=6.0.1;python_version>="3.6"',
|
125 | 125 | "wheel>=0.36.2",
|
|
189 | 189 | "colorama==0.4.4",
|
190 | 190 | 'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
|
191 | 191 | 'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
|
192 |
| - "virtualenv>=20.4.6", # Sync with importlib-metadata and pathlib2 |
| 192 | + "virtualenv>=20.4.7", # Sync with importlib-metadata and pathlib2 |
193 | 193 | 'pymysql==0.10.1;python_version<"3.6"',
|
194 | 194 | 'pymysql==1.0.2;python_version>="3.6"',
|
195 | 195 | "pyotp==2.6.0",
|
|
0 commit comments