Skip to content

Commit 20f2984

Browse files
committed
Update Python dependencies
1 parent 56c2b4d commit 20f2984

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
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>=2020.11.13
2-
tqdm>=4.53.0
2+
tqdm>=4.54.0
33
livereload==2.6.3;python_version>="3.6"
44
Markdown==3.3.3
55
readme-renderer==28.0

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ chardet==3.0.4
1616
urllib3==1.26.2
1717
requests==2.25.0
1818
selenium==3.141.0
19-
msedge-selenium-tools==3.141.2
19+
msedge-selenium-tools==3.141.3
2020
more-itertools==5.0.0;python_version<"3.5"
2121
more-itertools==8.6.0;python_version>="3.5"
2222
cssselect==1.1.0
@@ -64,6 +64,7 @@ pyotp==2.4.1
6464
boto==2.49.0
6565
cffi==1.14.4
6666
toml==0.10.2
67+
Pillow==8.0.1
6768
rich==9.2.0;python_version>="3.6" and python_version<"4.0"
6869
zipp==1.2.0;python_version<"3.6"
6970
zipp==3.4.0;python_version>="3.6"
@@ -73,6 +74,6 @@ pyflakes==2.1.1;python_version<"3.5"
7374
pyflakes==2.2.0;python_version>="3.5"
7475
tornado==5.1.1;python_version<"3.5"
7576
tornado==6.1;python_version>="3.5"
76-
allure-pytest==2.8.21
77+
allure-pytest==2.8.22
7778
pdfminer.six==20191110;python_version<"3.5"
7879
pdfminer.six==20201018;python_version>="3.5"

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5050
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
5151
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
52-
os.system("python -m pip install --upgrade 'tqdm>=4.53.0'")
52+
os.system("python -m pip install --upgrade 'tqdm>=4.54.0'")
5353
print("\n*** Publishing The Release to PyPI: ***\n")
5454
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
5555
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@@ -120,7 +120,7 @@
120120
'urllib3==1.26.2', # Must stay in sync with "requests"
121121
'requests==2.25.0',
122122
'selenium==3.141.0',
123-
'msedge-selenium-tools==3.141.2',
123+
'msedge-selenium-tools==3.141.3',
124124
'more-itertools==5.0.0;python_version<"3.5"',
125125
'more-itertools==8.6.0;python_version>="3.5"',
126126
'cssselect==1.1.0',
@@ -168,6 +168,7 @@
168168
'boto==2.49.0',
169169
'cffi==1.14.4',
170170
'toml==0.10.2',
171+
'Pillow==8.0.1',
171172
'rich==9.2.0;python_version>="3.6" and python_version<"4.0"',
172173
'zipp==1.2.0;python_version<"3.6"',
173174
'zipp==3.4.0;python_version>="3.6"',
@@ -177,7 +178,7 @@
177178
'pyflakes==2.2.0;python_version>="3.5"',
178179
'tornado==5.1.1;python_version<"3.5"',
179180
'tornado==6.1;python_version>="3.5"',
180-
'allure-pytest==2.8.21',
181+
'allure-pytest==2.8.22',
181182
'pdfminer.six==20191110;python_version<"3.5"',
182183
'pdfminer.six==20201018;python_version>="3.5"',
183184
],

0 commit comments

Comments
 (0)