Skip to content

Commit cb498cb

Browse files
committed
Update Python dependencies
1 parent a719eeb commit cb498cb

File tree

2 files changed

+31
-25
lines changed

2 files changed

+31
-25
lines changed

requirements.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
pip>=20.3.1
2-
packaging>=20.7
1+
pip>=20.3.3
2+
packaging>=20.8
33
setuptools>=44.1.1;python_version<"3.5"
44
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
55
setuptools>=51.0.0;python_version>="3.6"
6-
setuptools-scm>=4.1.2
7-
wheel>=0.36.1
6+
setuptools-scm>=5.0.1
7+
wheel>=0.36.2
88
attrs>=20.3.0
99
certifi>=2020.12.5
1010
six==1.15.0
@@ -13,19 +13,21 @@ ipdb==0.13.4
1313
parso==0.7.1
1414
jedi==0.17.2
1515
idna==2.10
16-
chardet==3.0.4
16+
chardet==3.0.4;python_version<"3.6"
17+
chardet==4.0.0;python_version>="3.6"
1718
urllib3==1.26.2
18-
requests==2.25.0
19+
requests==2.25.1
1920
selenium==3.141.0
2021
msedge-selenium-tools==3.141.3
2122
more-itertools==5.0.0;python_version<"3.5"
2223
more-itertools==8.6.0;python_version>="3.5"
2324
cssselect==1.1.0
2425
pluggy==0.13.1
2526
py==1.8.1;python_version<"3.5"
26-
py==1.9.0;python_version>="3.5"
27+
py==1.10.0;python_version>="3.5"
2728
pytest==4.6.11;python_version<"3.5"
28-
pytest==6.1.2;python_version>="3.5"
29+
pytest==6.1.2;python_version>="3.5" and python_version<"3.6"
30+
pytest==6.2.1;python_version>="3.6"
2931
pytest-cov==2.10.1
3032
pytest-forked==1.3.0
3133
pytest-html==1.22.1;python_version<"3.6"
@@ -36,15 +38,16 @@ pytest-ordering==0.6
3638
pytest-rerunfailures==8.0;python_version<"3.5"
3739
pytest-rerunfailures==9.1.1;python_version>="3.5"
3840
pytest-xdist==1.34.0;python_version<"3.5"
39-
pytest-xdist==2.1.0;python_version>="3.5"
41+
pytest-xdist==2.2.0;python_version>="3.5"
4042
parameterized==0.7.4
4143
soupsieve==1.9.6;python_version<"3.5"
42-
soupsieve==2.0.1;python_version>="3.5"
44+
soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"
45+
soupsieve==2.1;python_version>="3.6"
4346
beautifulsoup4==4.9.3
4447
cryptography==3.0;python_version<"3.6"
45-
cryptography==3.2.1;python_version>="3.6"
48+
cryptography==3.3.1;python_version>="3.6"
4649
pyopenssl==19.1.0;python_version<"3.6"
47-
pyopenssl==20.0.0;python_version>="3.6"
50+
pyopenssl==20.0.1;python_version>="3.6"
4851
pygments==2.5.2;python_version<"3.5"
4952
pygments==2.7.3;python_version>="3.5"
5053
traitlets==4.3.3;python_version<"3.7"
@@ -69,7 +72,7 @@ toml==0.10.2
6972
Pillow==6.2.2;python_version<"3.5"
7073
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
7174
Pillow==8.0.1;python_version>="3.6"
72-
rich==9.3.0;python_version>="3.6" and python_version<"4.0"
75+
rich==9.4.0;python_version>="3.6" and python_version<"4.0"
7376
zipp==1.2.0;python_version<"3.6"
7477
zipp==3.4.0;python_version>="3.6"
7578
flake8==3.7.9;python_version<"3.5"

setup.py

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@
102102
],
103103
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
104104
install_requires=[
105-
'pip>=20.3.1',
106-
'packaging>=20.7',
105+
'pip>=20.3.3',
106+
'packaging>=20.8',
107107
'setuptools>=44.1.1;python_version<"3.5"',
108108
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
109109
'setuptools>=51.0.0;python_version>="3.6"',
110110
'setuptools-scm',
111-
'wheel>=0.36.1',
111+
'wheel>=0.36.2',
112112
'attrs>=20.3.0',
113113
'certifi>=2020.12.5',
114114
'six',
@@ -117,19 +117,21 @@
117117
'parso==0.7.1', # The last version for Python 2 and 3.5
118118
'jedi==0.17.2', # The last version for Python 2 and 3.5
119119
'idna==2.10', # Must stay in sync with "requests"
120-
'chardet==3.0.4', # Must stay in sync with "requests"
120+
'chardet==3.0.4;python_version<"3.6"', # Stay in sync with "requests"
121+
'chardet==4.0.0;python_version>="3.6"', # Stay in sync with "requests"
121122
'urllib3==1.26.2', # Must stay in sync with "requests"
122-
'requests==2.25.0',
123+
'requests==2.25.1',
123124
'selenium==3.141.0',
124125
'msedge-selenium-tools==3.141.3',
125126
'more-itertools==5.0.0;python_version<"3.5"',
126127
'more-itertools==8.6.0;python_version>="3.5"',
127128
'cssselect==1.1.0',
128129
'pluggy==0.13.1',
129130
'py==1.8.1;python_version<"3.5"',
130-
'py==1.9.0;python_version>="3.5"',
131+
'py==1.10.0;python_version>="3.5"',
131132
'pytest==4.6.11;python_version<"3.5"',
132-
'pytest==6.1.2;python_version>="3.5"',
133+
'pytest==6.1.2;python_version>="3.5" and python_version<"3.6"',
134+
'pytest==6.2.1;python_version>="3.6"',
133135
'pytest-cov==2.10.1',
134136
'pytest-forked==1.3.0',
135137
'pytest-html==1.22.1;python_version<"3.6"',
@@ -140,15 +142,16 @@
140142
'pytest-rerunfailures==8.0;python_version<"3.5"',
141143
'pytest-rerunfailures==9.1.1;python_version>="3.5"',
142144
'pytest-xdist==1.34.0;python_version<"3.5"',
143-
'pytest-xdist==2.1.0;python_version>="3.5"',
145+
'pytest-xdist==2.2.0;python_version>="3.5"',
144146
'parameterized==0.7.4',
145147
'soupsieve==1.9.6;python_version<"3.5"',
146-
'soupsieve==2.0.1;python_version>="3.5"',
148+
'soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"',
149+
'soupsieve==2.1;python_version>="3.6"',
147150
'beautifulsoup4==4.9.3',
148151
'cryptography==3.0;python_version<"3.6"',
149-
'cryptography==3.2.1;python_version>="3.6"',
152+
'cryptography==3.3.1;python_version>="3.6"',
150153
'pyopenssl==19.1.0;python_version<"3.6"',
151-
'pyopenssl==20.0.0;python_version>="3.6"',
154+
'pyopenssl==20.0.1;python_version>="3.6"',
152155
'pygments==2.5.2;python_version<"3.5"',
153156
'pygments==2.7.3;python_version>="3.5"',
154157
'traitlets==4.3.3;python_version<"3.7"',
@@ -173,7 +176,7 @@
173176
'Pillow==6.2.2;python_version<"3.5"',
174177
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
175178
'Pillow==8.0.1;python_version>="3.6"',
176-
'rich==9.3.0;python_version>="3.6" and python_version<"4.0"',
179+
'rich==9.4.0;python_version>="3.6" and python_version<"4.0"',
177180
'zipp==1.2.0;python_version<"3.6"',
178181
'zipp==3.4.0;python_version>="3.6"',
179182
'flake8==3.7.9;python_version<"3.5"',

0 commit comments

Comments
 (0)