|
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.61.2'") |
| 53 | + os.system("python -m pip install --upgrade 'tqdm>=4.62.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.2.1;python_version>="3.6"', |
| 117 | + 'pip>=21.2.2;python_version>="3.6"', |
118 | 118 | 'packaging>=20.9;python_version<"3.6"',
|
119 | 119 | 'packaging>=21.0;python_version>="3.6"',
|
120 | 120 | "typing-extensions>=3.10.0.0",
|
|
140 | 140 | 'idna==3.2;python_version>="3.6"', # Must stay in sync with "requests"
|
141 | 141 | 'chardet==3.0.4;python_version<"3.6"', # Stay in sync with "requests"
|
142 | 142 | 'chardet==4.0.0;python_version>="3.6"', # Stay in sync with "requests"
|
143 |
| - 'charset-normalizer==2.0.3;python_version>="3.6"', # Sync "requests" |
| 143 | + 'charset-normalizer==2.0.4;python_version>="3.6"', # Sync "requests" |
144 | 144 | "urllib3==1.26.6", # Must stay in sync with "requests"
|
145 | 145 | 'requests==2.26.0;python_version<"3.5"',
|
146 | 146 | 'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
|
|
201 | 201 | 'platformdirs==2.2.0;python_version>="3.6"',
|
202 | 202 | 'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
|
203 | 203 | 'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
|
204 |
| - "virtualenv>=20.6.0", # Sync with importlib-metadata and pathlib2 |
| 204 | + "virtualenv>=20.7.0", # Sync with importlib-metadata and pathlib2 |
205 | 205 | 'pymysql==0.10.1;python_version<"3.6"',
|
206 | 206 | 'pymysql==1.0.2;python_version>="3.6"',
|
207 | 207 | "pyotp==2.6.0",
|
|
0 commit comments