Skip to content

Commit df4e636

Browse files
committed
Update Python dependencies
1 parent c7d9278 commit df4e636

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
regex>=2021.4.4
2-
tqdm>=4.60.0
2+
tqdm>=4.61.0
33
livereload==2.6.3;python_version>="3.6"
44
joblib==1.0.1;python_version>="3.6"
55
Markdown==3.3.4;python_version>="3.6"

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
pip>=20.3.4;python_version<"3.6"
2-
pip>=21.1.1;python_version>="3.6"
2+
pip>=21.1.2;python_version>="3.6"
33
packaging>=20.9
44
typing-extensions>=3.10.0.0
55
setuptools>=44.1.1;python_version<"3.5"
66
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
7-
setuptools>=56.2.0;python_version>="3.6"
7+
setuptools>=57.0.0;python_version>="3.6"
88
setuptools-scm==5.0.2;python_version<"3.6"
99
setuptools-scm>=6.0.1;python_version>="3.6"
1010
wheel>=0.36.2
@@ -74,7 +74,7 @@ matplotlib-inline==0.1.2;python_version>="3.7"
7474
colorama==0.4.4
7575
pathlib2==2.3.5;python_version<"3.5"
7676
importlib-metadata==2.0.0;python_version<"3.6"
77-
virtualenv>=20.4.6
77+
virtualenv>=20.4.7
7878
pymysql==0.10.1;python_version<"3.6"
7979
pymysql==1.0.2;python_version>="3.6"
8080
pyotp==2.6.0

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5151
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
5252
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'")
5454
print("\n*** Publishing The Release to PyPI: ***\n")
5555
os.system("python -m twine upload dist/*") # Requires ~/.pypirc Keys
5656
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@@ -114,12 +114,12 @@
114114
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
115115
install_requires=[
116116
'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"',
118118
"packaging>=20.9",
119119
"typing-extensions>=3.10.0.0",
120120
'setuptools>=44.1.1;python_version<"3.5"',
121121
'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"',
123123
'setuptools-scm==5.0.2;python_version<"3.6"',
124124
'setuptools-scm>=6.0.1;python_version>="3.6"',
125125
"wheel>=0.36.2",
@@ -189,7 +189,7 @@
189189
"colorama==0.4.4",
190190
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
191191
'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
193193
'pymysql==0.10.1;python_version<"3.6"',
194194
'pymysql==1.0.2;python_version>="3.6"',
195195
"pyotp==2.6.0",

0 commit comments

Comments
 (0)