Skip to content

Commit 75f9a0e

Browse files
committed
Update Python dependencies
1 parent 80942cc commit 75f9a0e

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

requirements.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,23 @@ setuptools>=44.1.1;python_version<"3.5"
44
setuptools>=50.3.2;python_version>="3.5"
55
setuptools-scm>=4.1.2
66
wheel>=0.35.1
7+
attrs>=20.3.0
8+
certifi>=2020.11.8
79
six==1.15.0
810
nose==1.3.7
911
ipdb==0.13.4
1012
parso==0.7.1
1113
jedi==0.17.2
1214
idna==2.10
1315
chardet==3.0.4
14-
urllib3==1.25.11
15-
requests==2.24.0
16+
urllib3==1.26.1
17+
requests==2.25.0
1618
selenium==3.141.0
1719
msedge-selenium-tools==3.141.2
1820
more-itertools==5.0.0;python_version<"3.5"
1921
more-itertools==8.6.0;python_version>="3.5"
2022
cssselect==1.1.0
2123
pluggy==0.13.1
22-
attrs>=20.2.0
2324
py==1.8.1;python_version<"3.5"
2425
py==1.9.0;python_version>="3.5"
2526
pytest==4.6.11;python_version<"3.5"
@@ -62,7 +63,8 @@ brython==3.9.0
6263
pyotp==2.4.1
6364
boto==2.49.0
6465
cffi==1.14.3
65-
rich==9.1.0;python_version>="3.6" and python_version<"4.0"
66+
toml==0.10.2
67+
rich==9.2.0;python_version>="3.6" and python_version<"4.0"
6668
zipp==1.2.0;python_version<"3.6"
6769
zipp==3.4.0;python_version>="3.6"
6870
flake8==3.7.9;python_version<"3.5"
@@ -71,7 +73,6 @@ pyflakes==2.1.1;python_version<"3.5"
7173
pyflakes==2.2.0;python_version>="3.5"
7274
tornado==5.1.1;python_version<"3.5"
7375
tornado==6.1;python_version>="3.5"
74-
certifi>=2020.6.20
7576
allure-pytest==2.8.19
7677
pdfminer.six==20191110;python_version<"3.5"
7778
pdfminer.six==20201018;python_version>="3.5"

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,22 +108,23 @@
108108
'setuptools>=50.3.2;python_version>="3.5"',
109109
'setuptools-scm',
110110
'wheel>=0.35.1',
111+
'attrs>=20.3.0',
112+
'certifi>=2020.11.8',
111113
'six',
112114
'nose',
113115
'ipdb',
114116
'parso==0.7.1', # The last version for Python 2 and 3.5
115117
'jedi==0.17.2', # The last version for Python 2 and 3.5
116118
'idna==2.10', # Must stay in sync with "requests"
117119
'chardet==3.0.4', # Must stay in sync with "requests"
118-
'urllib3==1.25.11', # Must stay in sync with "requests"
119-
'requests==2.24.0',
120+
'urllib3==1.26.1', # Must stay in sync with "requests"
121+
'requests==2.25.0',
120122
'selenium==3.141.0',
121123
'msedge-selenium-tools==3.141.2',
122124
'more-itertools==5.0.0;python_version<"3.5"',
123125
'more-itertools==8.6.0;python_version>="3.5"',
124126
'cssselect==1.1.0',
125127
'pluggy==0.13.1',
126-
'attrs>=20.2.0',
127128
'py==1.8.1;python_version<"3.5"',
128129
'py==1.9.0;python_version>="3.5"',
129130
'pytest==4.6.11;python_version<"3.5"',
@@ -166,7 +167,8 @@
166167
'pyotp==2.4.1',
167168
'boto==2.49.0',
168169
'cffi==1.14.3',
169-
'rich==9.1.0;python_version>="3.6" and python_version<"4.0"',
170+
'toml==0.10.2',
171+
'rich==9.2.0;python_version>="3.6" and python_version<"4.0"',
170172
'zipp==1.2.0;python_version<"3.6"',
171173
'zipp==3.4.0;python_version>="3.6"',
172174
'flake8==3.7.9;python_version<"3.5"',
@@ -175,7 +177,6 @@
175177
'pyflakes==2.2.0;python_version>="3.5"',
176178
'tornado==5.1.1;python_version<"3.5"',
177179
'tornado==6.1;python_version>="3.5"',
178-
'certifi>=2020.6.20',
179180
'allure-pytest==2.8.19',
180181
'pdfminer.six==20191110;python_version<"3.5"',
181182
'pdfminer.six==20201018;python_version>="3.5"',

0 commit comments

Comments
 (0)