Skip to content

Commit 32c1e0f

Browse files
committed
Refresh Python dependencies
1 parent 76c7e70 commit 32c1e0f

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

requirements.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
pip>=20.3.4;python_version<"3.6"
2-
pip>=21.3.1;python_version>="3.6"
2+
pip>=21.3.1;python_version>="3.6" and python_version<"3.7"
3+
pip>=22.0.2;python_version>="3.7"
34
packaging>=20.9;python_version<"3.6"
45
packaging>=21.3;python_version>="3.6"
56
setuptools>=44.1.1;python_version<"3.5"
67
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
78
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
8-
setuptools>=60.5.0;python_version>="3.7"
9+
setuptools>=60.6.0;python_version>="3.7"
910
setuptools-scm>=5.0.2;python_version<"3.6"
1011
setuptools-scm>=6.4.2;python_version>="3.6"
1112
tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"
@@ -27,7 +28,7 @@ idna==2.10;python_version<"3.6"
2728
idna==3.3;python_version>="3.6"
2829
chardet==3.0.4;python_version<"3.5"
2930
chardet==4.0.0;python_version>="3.5"
30-
charset-normalizer==2.0.10;python_version>="3.5"
31+
charset-normalizer==2.0.11;python_version>="3.5"
3132
urllib3==1.26.8
3233
requests==2.27.0;python_version<"3.5"
3334
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
@@ -37,7 +38,7 @@ sniffio==1.2.0;python_version>="3.7"
3738
h11==0.13.0;python_version>="3.7"
3839
trio==0.19.0;python_version>="3.7"
3940
trio-websocket==0.9.2;python_version>="3.7"
40-
pyopenssl==21.0.0;python_version>="3.7"
41+
pyopenssl==22.0.0;python_version>="3.7"
4142
wsproto==1.0.0;python_version>="3.7"
4243
selenium==3.141.0;python_version<"3.7"
4344
selenium==4.1.0;python_version>="3.7"
@@ -88,7 +89,7 @@ pygments==2.5.2;python_version<"3.5"
8889
pygments==2.11.2;python_version>="3.5"
8990
prompt-toolkit==1.0.18;python_version<"3.5"
9091
prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"
91-
prompt-toolkit==3.0.24;python_version>="3.6.2"
92+
prompt-toolkit==3.0.26;python_version>="3.6.2"
9293
decorator==4.4.2;python_version<"3.5"
9394
decorator==5.1.1;python_version>="3.5"
9495
ipython==5.10.0;python_version<"3.5"
@@ -118,7 +119,7 @@ Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
118119
Pillow==9.0.0;python_version>="3.7"
119120
typing-extensions==3.10.0.2;python_version<"3.6"
120121
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
121-
rich==11.0.0;python_version>="3.6" and python_version<"4.0"
122+
rich==11.1.0;python_version>="3.6.2" and python_version<"4.0"
122123
tornado==5.1.1;python_version<"3.5"
123124
tornado==6.1;python_version>="3.5"
124125
pdfminer.six==20191110;python_version<"3.5"

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,14 @@
124124
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
125125
install_requires=[
126126
'pip>=20.3.4;python_version<"3.6"',
127-
'pip>=21.3.1;python_version>="3.6"',
127+
'pip>=21.3.1;python_version>="3.6" and python_version<"3.7"',
128+
'pip>=22.0.2;python_version>="3.7"',
128129
'packaging>=20.9;python_version<"3.6"',
129130
'packaging>=21.3;python_version>="3.6"',
130131
'setuptools>=44.1.1;python_version<"3.5"',
131132
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
132133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
133-
'setuptools>=60.5.0;python_version>="3.7"',
134+
'setuptools>=60.6.0;python_version>="3.7"',
134135
'setuptools-scm>=5.0.2;python_version<"3.6"',
135136
'setuptools-scm>=6.4.2;python_version>="3.6"',
136137
'tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"',
@@ -152,7 +153,7 @@
152153
'idna==3.3;python_version>="3.6"', # Must stay in sync with "requests"
153154
'chardet==3.0.4;python_version<"3.5"', # Stay in sync with "requests"
154155
'chardet==4.0.0;python_version>="3.5"', # Stay in sync with "requests"
155-
'charset-normalizer==2.0.10;python_version>="3.5"', # Sync "requests"
156+
'charset-normalizer==2.0.11;python_version>="3.5"', # Sync "requests"
156157
"urllib3==1.26.8", # Must stay in sync with "requests"
157158
'requests==2.27.0;python_version<"3.5"',
158159
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
@@ -162,7 +163,7 @@
162163
'h11==0.13.0;python_version>="3.7"',
163164
'trio==0.19.0;python_version>="3.7"',
164165
'trio-websocket==0.9.2;python_version>="3.7"',
165-
'pyopenssl==21.0.0;python_version>="3.7"',
166+
'pyopenssl==22.0.0;python_version>="3.7"',
166167
'wsproto==1.0.0;python_version>="3.7"',
167168
'selenium==3.141.0;python_version<"3.7"',
168169
'selenium==4.1.0;python_version>="3.7"',
@@ -213,7 +214,7 @@
213214
'pygments==2.11.2;python_version>="3.5"',
214215
'prompt-toolkit==1.0.18;python_version<"3.5"',
215216
'prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"', # noqa: E501
216-
'prompt-toolkit==3.0.24;python_version>="3.6.2"',
217+
'prompt-toolkit==3.0.26;python_version>="3.6.2"',
217218
'decorator==4.4.2;python_version<"3.5"',
218219
'decorator==5.1.1;python_version>="3.5"',
219220
'ipython==5.10.0;python_version<"3.5"',
@@ -243,7 +244,7 @@
243244
'Pillow==9.0.0;python_version>="3.7"',
244245
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
245246
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
246-
'rich==11.0.0;python_version>="3.6" and python_version<"4.0"',
247+
'rich==11.1.0;python_version>="3.6.2" and python_version<"4.0"',
247248
'tornado==5.1.1;python_version<"3.5"',
248249
'tornado==6.1;python_version>="3.5"',
249250
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)