Skip to content

Commit 14604b3

Browse files
committed
Update Python package requirements
1 parent f029a3d commit 14604b3

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
pip>=20.2.3
1+
pip>=20.2.4
22
packaging>=20.4
33
setuptools>=44.1.1;python_version<"3.5"
4-
setuptools>=50.3.0;python_version>="3.5"
4+
setuptools>=50.3.2;python_version>="3.5"
55
setuptools-scm>=4.1.2
66
wheel>=0.35.1
77
six==1.15.0
@@ -11,7 +11,7 @@ parso==0.7.1
1111
jedi==0.17.2
1212
idna==2.10
1313
chardet==3.0.4
14-
urllib3==1.25.10
14+
urllib3==1.25.11
1515
requests==2.24.0
1616
selenium==3.141.0
1717
msedge-selenium-tools==3.141.2
@@ -45,7 +45,7 @@ pyopenssl==19.1.0
4545
pygments==2.5.2;python_version<"3.5"
4646
pygments==2.7.1;python_version>="3.5"
4747
traitlets==4.3.3;python_version<"3.7"
48-
traitlets==5.0.4;python_version>="3.7"
48+
traitlets==5.0.5;python_version>="3.7"
4949
prompt-toolkit==1.0.18;python_version<"3.6"
5050
prompt-toolkit==3.0.8;python_version>="3.6"
5151
ipython==5.10.0;python_version<"3.5"
@@ -55,21 +55,21 @@ ipython==7.18.1;python_version>="3.7"
5555
colorama==0.4.4
5656
pathlib2==2.3.5;python_version<"3.5"
5757
importlib-metadata==2.0.0
58-
virtualenv>=20.0.34
58+
virtualenv>=20.0.35
5959
pymysql==0.10.1
6060
coverage==5.3
6161
brython==3.9.0
62-
pyotp==2.4.0
62+
pyotp==2.4.1
6363
boto==2.49.0
6464
cffi==1.14.3
6565
zipp==1.2.0;python_version<"3.6"
66-
zipp==3.3.0;python_version>="3.6"
67-
rich==8.0.0;python_version>="3.6" and python_version<"4.0"
66+
zipp==3.3.1;python_version>="3.6"
67+
rich==9.0.1;python_version>="3.6" and python_version<"4.0"
6868
flake8==3.7.9;python_version<"3.5"
6969
flake8==3.8.4;python_version>="3.5"
7070
pyflakes==2.1.1;python_version<"3.5"
7171
pyflakes==2.2.0;python_version>="3.5"
7272
certifi>=2020.6.20
7373
allure-pytest==2.8.18
7474
pdfminer.six==20191110;python_version<"3.5"
75-
pdfminer.six==20200726;python_version>="3.5"
75+
pdfminer.six==20201018;python_version>="3.5"

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@
102102
],
103103
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
104104
install_requires=[
105-
'pip>=20.2.3',
105+
'pip>=20.2.4',
106106
'packaging>=20.4',
107107
'setuptools>=44.1.1;python_version<"3.5"',
108-
'setuptools>=50.3.0;python_version>="3.5"',
108+
'setuptools>=50.3.2;python_version>="3.5"',
109109
'setuptools-scm',
110110
'wheel>=0.35.1',
111111
'six',
@@ -115,7 +115,7 @@
115115
'jedi==0.17.2', # The last version for Python 2 and 3.5
116116
'idna==2.10', # Must stay in sync with "requests"
117117
'chardet==3.0.4', # Must stay in sync with "requests"
118-
'urllib3==1.25.10', # Must stay in sync with "requests"
118+
'urllib3==1.25.11', # Must stay in sync with "requests"
119119
'requests==2.24.0',
120120
'selenium==3.141.0',
121121
'msedge-selenium-tools==3.141.2',
@@ -149,7 +149,7 @@
149149
'pygments==2.5.2;python_version<"3.5"',
150150
'pygments==2.7.1;python_version>="3.5"',
151151
'traitlets==4.3.3;python_version<"3.7"',
152-
'traitlets==5.0.4;python_version>="3.7"',
152+
'traitlets==5.0.5;python_version>="3.7"',
153153
'ipython==5.10.0;python_version<"3.5"',
154154
'prompt-toolkit==1.0.18;python_version<"3.6"',
155155
'prompt-toolkit==3.0.8;python_version>="3.6"',
@@ -159,24 +159,24 @@
159159
'colorama==0.4.4',
160160
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
161161
'importlib-metadata==2.0.0', # Sync with "virtualenv"
162-
'virtualenv>=20.0.34', # Sync with importlib-metadata and pathlib2
162+
'virtualenv>=20.0.35', # Sync with importlib-metadata and pathlib2
163163
'pymysql==0.10.1',
164164
'coverage==5.3',
165165
'brython==3.9.0',
166-
'pyotp==2.4.0',
166+
'pyotp==2.4.1',
167167
'boto==2.49.0',
168168
'cffi==1.14.3',
169169
'zipp==1.2.0;python_version<"3.6"',
170-
'zipp==3.3.0;python_version>="3.6"',
171-
'rich==8.0.0;python_version>="3.6" and python_version<"4.0"',
170+
'zipp==3.3.1;python_version>="3.6"',
171+
'rich==9.0.1;python_version>="3.6" and python_version<"4.0"',
172172
'flake8==3.7.9;python_version<"3.5"',
173173
'flake8==3.8.4;python_version>="3.5"',
174174
'pyflakes==2.1.1;python_version<"3.5"',
175175
'pyflakes==2.2.0;python_version>="3.5"',
176176
'certifi>=2020.6.20',
177177
'allure-pytest==2.8.18',
178178
'pdfminer.six==20191110;python_version<"3.5"',
179-
'pdfminer.six==20200726;python_version>="3.5"',
179+
'pdfminer.six==20201018;python_version>="3.5"',
180180
],
181181
packages=[
182182
'seleniumbase',

0 commit comments

Comments
 (0)