Skip to content

Commit b7d54d5

Browse files
committed
Refresh Python dependencies
1 parent b0ddb01 commit b7d54d5

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

requirements.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
pip>=20.3.4;python_version<"3.6"
22
pip>=21.3.1;python_version>="3.6"
33
packaging>=20.9;python_version<"3.6"
4-
packaging>=21.2;python_version>="3.6"
4+
packaging>=21.3;python_version>="3.6"
55
setuptools>=44.1.1;python_version<"3.5"
66
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
7-
setuptools>=59.1.1;python_version>="3.6"
7+
setuptools>=59.2.0;python_version>="3.6"
88
setuptools-scm>=5.0.2;python_version<"3.6"
99
setuptools-scm>=6.3.2;python_version>="3.6"
1010
tomli>=1.2.2;python_version>="3.6"
@@ -25,7 +25,7 @@ idna==2.10;python_version<"3.6"
2525
idna==3.3;python_version>="3.6"
2626
chardet==3.0.4;python_version<"3.5"
2727
chardet==4.0.0;python_version>="3.5"
28-
charset-normalizer==2.0.7;python_version>="3.5"
28+
charset-normalizer==2.0.8;python_version>="3.5"
2929
urllib3==1.26.7
3030
requests==2.26.0;python_version<"3.5"
3131
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
@@ -37,10 +37,10 @@ trio-websocket==0.9.2;python_version>="3.7"
3737
pyopenssl==21.0.0;python_version>="3.7"
3838
wsproto==1.0.0;python_version>="3.7"
3939
selenium==3.141.0;python_version<"3.7"
40-
selenium==4.0.0;python_version>="3.7"
40+
selenium==4.1.0;python_version>="3.7"
4141
msedge-selenium-tools==3.141.3;python_version<"3.7"
4242
more-itertools==5.0.0;python_version<"3.5"
43-
more-itertools==8.11.0;python_version>="3.5"
43+
more-itertools==8.12.0;python_version>="3.5"
4444
cssselect==1.1.0
4545
sortedcontainers==2.4.0
4646
filelock==3.2.1;python_version<"3.6"
@@ -77,7 +77,7 @@ beautifulsoup4==4.10.0;python_version>="3.5"
7777
cryptography==2.9.2;python_version<"3.5"
7878
cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"
7979
cryptography==3.4.8;python_version>="3.6" and python_version<"3.7"
80-
cryptography==35.0.0;python_version>="3.7"
80+
cryptography==36.0.0;python_version>="3.7"
8181
pygments==2.5.2;python_version<"3.5"
8282
pygments==2.10.0;python_version>="3.5"
8383
prompt-toolkit==1.0.18;python_version<"3.5"
@@ -107,7 +107,8 @@ toml==0.10.2
107107
Pillow==6.2.2;python_version<"3.5"
108108
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
109109
Pillow==8.4.0;python_version>="3.6"
110-
typing-extensions==3.10.0.2;python_version<"3.8"
110+
typing-extensions==3.10.0.2;python_version<"3.6"
111+
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
111112
rich==10.14.0;python_version>="3.6" and python_version<"4.0"
112113
tornado==5.1.1;python_version<"3.5"
113114
tornado==6.1;python_version>="3.5"

setup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@
120120
'pip>=20.3.4;python_version<"3.6"',
121121
'pip>=21.3.1;python_version>="3.6"',
122122
'packaging>=20.9;python_version<"3.6"',
123-
'packaging>=21.2;python_version>="3.6"',
123+
'packaging>=21.3;python_version>="3.6"',
124124
'setuptools>=44.1.1;python_version<"3.5"',
125125
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
126-
'setuptools>=59.1.1;python_version>="3.6"',
126+
'setuptools>=59.2.0;python_version>="3.6"',
127127
'setuptools-scm>=5.0.2;python_version<"3.6"',
128128
'setuptools-scm>=6.3.2;python_version>="3.6"',
129129
'tomli>=1.2.2;python_version>="3.6"',
@@ -144,7 +144,7 @@
144144
'idna==3.3;python_version>="3.6"', # Must stay in sync with "requests"
145145
'chardet==3.0.4;python_version<"3.5"', # Stay in sync with "requests"
146146
'chardet==4.0.0;python_version>="3.5"', # Stay in sync with "requests"
147-
'charset-normalizer==2.0.7;python_version>="3.5"', # Sync "requests"
147+
'charset-normalizer==2.0.8;python_version>="3.5"', # Sync "requests"
148148
"urllib3==1.26.7", # Must stay in sync with "requests"
149149
'requests==2.26.0;python_version<"3.5"',
150150
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
@@ -156,10 +156,10 @@
156156
'pyopenssl==21.0.0;python_version>="3.7"',
157157
'wsproto==1.0.0;python_version>="3.7"',
158158
'selenium==3.141.0;python_version<"3.7"',
159-
'selenium==4.0.0;python_version>="3.7"',
159+
'selenium==4.1.0;python_version>="3.7"',
160160
'msedge-selenium-tools==3.141.3;python_version<"3.7"',
161161
'more-itertools==5.0.0;python_version<"3.5"',
162-
'more-itertools==8.11.0;python_version>="3.5"',
162+
'more-itertools==8.12.0;python_version>="3.5"',
163163
"cssselect==1.1.0",
164164
"sortedcontainers==2.4.0",
165165
'filelock==3.2.1;python_version<"3.6"',
@@ -196,7 +196,7 @@
196196
'cryptography==2.9.2;python_version<"3.5"',
197197
'cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"',
198198
'cryptography==3.4.8;python_version>="3.6" and python_version<"3.7"',
199-
'cryptography==35.0.0;python_version>="3.7"',
199+
'cryptography==36.0.0;python_version>="3.7"',
200200
'pygments==2.5.2;python_version<"3.5"',
201201
'pygments==2.10.0;python_version>="3.5"',
202202
'prompt-toolkit==1.0.18;python_version<"3.5"',
@@ -226,7 +226,8 @@
226226
'Pillow==6.2.2;python_version<"3.5"',
227227
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
228228
'Pillow==8.4.0;python_version>="3.6"',
229-
'typing-extensions==3.10.0.2;python_version<"3.8"', # Sync with "rich"
229+
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
230+
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
230231
'rich==10.14.0;python_version>="3.6" and python_version<"4.0"',
231232
'tornado==5.1.1;python_version<"3.5"',
232233
'tornado==6.1;python_version>="3.5"',

0 commit comments

Comments
 (0)