Skip to content

Commit ef97e96

Browse files
committed
Update Python dependencies
1 parent 1c31605 commit ef97e96

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
regex>=2021.7.6
2-
tqdm>=4.61.2
2+
tqdm>=4.62.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"
@@ -12,7 +12,7 @@ click==8.0.1;python_version>="3.6"
1212
zipp==3.5.0;python_version>="3.6"
1313
readme-renderer==29.0
1414
pymdown-extensions==8.2;python_version>="3.6"
15-
importlib-metadata==4.6.1;python_version>="3.6"
15+
importlib-metadata==4.6.3;python_version>="3.6"
1616
lunr==0.6.0;python_version>="3.6"
1717
nltk==3.6.2;python_version>="3.6"
1818
watchdog==2.1.3;python_version>="3.6"

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=20.3.4;python_version<"3.6"
2-
pip>=21.2.1;python_version>="3.6"
2+
pip>=21.2.2;python_version>="3.6"
33
packaging>=20.9;python_version<"3.6"
44
packaging>=21.0;python_version>="3.6"
55
typing-extensions>=3.10.0.0
@@ -25,7 +25,7 @@ idna==2.10;python_version<"3.6"
2525
idna==3.2;python_version>="3.6"
2626
chardet==3.0.4;python_version<"3.6"
2727
chardet==4.0.0;python_version>="3.6"
28-
charset-normalizer==2.0.3;python_version>="3.6"
28+
charset-normalizer==2.0.4;python_version>="3.6"
2929
urllib3==1.26.6
3030
requests==2.26.0;python_version<"3.5"
3131
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
@@ -86,7 +86,7 @@ platformdirs==2.0.2;python_version<"3.6"
8686
platformdirs==2.2.0;python_version>="3.6"
8787
pathlib2==2.3.5;python_version<"3.5"
8888
importlib-metadata==2.0.0;python_version<"3.6"
89-
virtualenv>=20.6.0
89+
virtualenv>=20.7.0
9090
pymysql==0.10.1;python_version<"3.6"
9191
pymysql==1.0.2;python_version>="3.6"
9292
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.61.2'")
53+
os.system("python -m pip install --upgrade 'tqdm>=4.62.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,7 +114,7 @@
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.2.1;python_version>="3.6"',
117+
'pip>=21.2.2;python_version>="3.6"',
118118
'packaging>=20.9;python_version<"3.6"',
119119
'packaging>=21.0;python_version>="3.6"',
120120
"typing-extensions>=3.10.0.0",
@@ -140,7 +140,7 @@
140140
'idna==3.2;python_version>="3.6"', # Must stay in sync with "requests"
141141
'chardet==3.0.4;python_version<"3.6"', # Stay in sync with "requests"
142142
'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"
144144
"urllib3==1.26.6", # Must stay in sync with "requests"
145145
'requests==2.26.0;python_version<"3.5"',
146146
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
@@ -201,7 +201,7 @@
201201
'platformdirs==2.2.0;python_version>="3.6"',
202202
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
203203
'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
205205
'pymysql==0.10.1;python_version<"3.6"',
206206
'pymysql==1.0.2;python_version>="3.6"',
207207
"pyotp==2.6.0",

0 commit comments

Comments
 (0)