Skip to content

Commit 6b66a06

Browse files
committed
Update Python dependencies
1 parent 1125dcb commit 6b66a06

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ wheel>=0.34.2
77
six==1.15.0
88
nose==1.3.7
99
ipdb==0.13.3
10-
idna==2.9
10+
idna==2.10
1111
chardet==3.0.4
1212
urllib3==1.25.9
1313
requests==2.24.0
@@ -42,7 +42,7 @@ coverage==5.1
4242
pyotp==2.3.0
4343
boto==2.49.0
4444
cffi==1.14.0
45-
rich==2.2.6;python_version>="3.6" and python_version<"4.0"
45+
rich==3.0.0;python_version>="3.6" and python_version<"4.0"
4646
flake8==3.7.9;python_version<"3.5"
4747
flake8==3.8.3;python_version>="3.5"
4848
pyflakes==2.1.1;python_version<"3.5"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
4545
os.system("python -m pip install 'twine>=1.15.0'")
4646
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
47-
os.system("python -m pip install 'tqdm>=4.46.1'")
47+
os.system("python -m pip install 'tqdm>=4.47.0'")
4848
print("\n*** Publishing The Release to PyPI: ***\n")
4949
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
5050
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@@ -99,7 +99,7 @@
9999
'six',
100100
'nose',
101101
'ipdb',
102-
'idna==2.9', # Must stay in sync with "requests"
102+
'idna==2.10', # Must stay in sync with "requests"
103103
'chardet==3.0.4', # Must stay in sync with "requests"
104104
'urllib3==1.25.9', # Must stay in sync with "requests"
105105
'requests==2.24.0',
@@ -134,7 +134,7 @@
134134
'pyotp==2.3.0',
135135
'boto==2.49.0',
136136
'cffi==1.14.0',
137-
'rich==2.2.6;python_version>="3.6" and python_version<"4.0"',
137+
'rich==3.0.0;python_version>="3.6" and python_version<"4.0"',
138138
'flake8==3.7.9;python_version<"3.5"',
139139
'flake8==3.8.3;python_version>="3.5"',
140140
'pyflakes==2.1.1;python_version<"3.5"',

0 commit comments

Comments
 (0)