Skip to content

Commit 2a4aaf6

Browse files
committed
Refresh Python dependencies
1 parent 614fbce commit 2a4aaf6

File tree

2 files changed

+20
-22
lines changed

2 files changed

+20
-22
lines changed

requirements.txt

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
99
setuptools>=60.7.1;python_version>="3.7"
1010
setuptools-scm>=5.0.2;python_version<"3.6"
1111
setuptools-scm>=6.4.2;python_version>="3.6"
12-
tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"
12+
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
1313
tomli>=2.0.0;python_version>="3.7"
1414
wheel>=0.37.1
1515
attrs>=21.4.0
@@ -30,7 +30,7 @@ chardet==3.0.4;python_version<"3.5"
3030
chardet==4.0.0;python_version>="3.5"
3131
charset-normalizer==2.0.11;python_version>="3.5"
3232
urllib3==1.26.8
33-
requests==2.27.0;python_version<"3.5"
33+
requests==2.27.1;python_version<"3.5"
3434
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
3535
requests==2.27.1;python_version>="3.6"
3636
nose==1.3.7
@@ -83,13 +83,12 @@ beautifulsoup4==4.9.3;python_version<"3.5"
8383
beautifulsoup4==4.10.0;python_version>="3.5"
8484
cryptography==2.9.2;python_version<"3.5"
8585
cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"
86-
cryptography==3.4.8;python_version>="3.6" and python_version<"3.7"
87-
cryptography==36.0.1;python_version>="3.7"
86+
cryptography==36.0.1;python_version>="3.6"
8887
pygments==2.5.2;python_version<"3.5"
8988
pygments==2.11.2;python_version>="3.5"
9089
prompt-toolkit==1.0.18;python_version<"3.5"
91-
prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"
92-
prompt-toolkit==3.0.26;python_version>="3.6.2"
90+
prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6"
91+
prompt-toolkit==3.0.26;python_version>="3.6"
9392
decorator==4.4.2;python_version<"3.5"
9493
decorator==5.1.1;python_version>="3.5"
9594
ipython==5.10.0;python_version<"3.5"
@@ -101,10 +100,10 @@ colorama==0.4.4
101100
platformdirs==2.0.2;python_version<"3.6"
102101
platformdirs==2.4.0;python_version>="3.6" and python_version<"3.7"
103102
platformdirs==2.4.1;python_version>="3.7"
104-
pathlib2==2.3.5;python_version<"3.5"
105-
importlib-metadata==2.0.0;python_version<"3.5"
106-
importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"
107-
virtualenv>=20.13.0
103+
pathlib2==2.3.6;python_version<"3.5"
104+
importlib-metadata==2.1.3;python_version<"3.6"
105+
importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"
106+
virtualenv>=20.13.1
108107
pycparser==2.21
109108
pymysql==0.10.1;python_version<"3.6"
110109
pymysql==1.0.2;python_version>="3.6"
@@ -119,7 +118,7 @@ Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
119118
Pillow==9.0.1;python_version>="3.7"
120119
typing-extensions==3.10.0.2;python_version<"3.6"
121120
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
122-
rich==11.1.0;python_version>="3.6.2" and python_version<"4.0"
121+
rich==11.1.0;python_version>="3.6" and python_version<"4.0"
123122
tornado==5.1.1;python_version<"3.5"
124123
tornado==6.1;python_version>="3.5"
125124
pdfminer.six==20191110;python_version<"3.5"

setup.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
'setuptools>=60.7.1;python_version>="3.7"',
135135
'setuptools-scm>=5.0.2;python_version<"3.6"',
136136
'setuptools-scm>=6.4.2;python_version>="3.6"',
137-
'tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"',
137+
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
138138
'tomli>=2.0.0;python_version>="3.7"',
139139
"wheel>=0.37.1",
140140
"attrs>=21.4.0",
@@ -155,7 +155,7 @@
155155
'chardet==4.0.0;python_version>="3.5"', # Stay in sync with "requests"
156156
'charset-normalizer==2.0.11;python_version>="3.5"', # Sync "requests"
157157
"urllib3==1.26.8", # Must stay in sync with "requests"
158-
'requests==2.27.0;python_version<"3.5"',
158+
'requests==2.27.1;python_version<"3.5"',
159159
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
160160
'requests==2.27.1;python_version>="3.6"',
161161
"nose==1.3.7",
@@ -208,13 +208,12 @@
208208
'beautifulsoup4==4.10.0;python_version>="3.5"',
209209
'cryptography==2.9.2;python_version<"3.5"',
210210
'cryptography==3.2.1;python_version>="3.5" and python_version<"3.6"',
211-
'cryptography==3.4.8;python_version>="3.6" and python_version<"3.7"',
212-
'cryptography==36.0.1;python_version>="3.7"',
211+
'cryptography==36.0.1;python_version>="3.6"',
213212
'pygments==2.5.2;python_version<"3.5"',
214213
'pygments==2.11.2;python_version>="3.5"',
215214
'prompt-toolkit==1.0.18;python_version<"3.5"',
216-
'prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6.2"', # noqa: E501
217-
'prompt-toolkit==3.0.26;python_version>="3.6.2"',
215+
'prompt-toolkit==2.0.10;python_version>="3.5" and python_version<"3.6"', # noqa: E501
216+
'prompt-toolkit==3.0.26;python_version>="3.6"',
218217
'decorator==4.4.2;python_version<"3.5"',
219218
'decorator==5.1.1;python_version>="3.5"',
220219
'ipython==5.10.0;python_version<"3.5"',
@@ -226,10 +225,10 @@
226225
'platformdirs==2.0.2;python_version<"3.6"',
227226
'platformdirs==2.4.0;python_version>="3.6" and python_version<"3.7"',
228227
'platformdirs==2.4.1;python_version>="3.7"',
229-
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
230-
'importlib-metadata==2.0.0;python_version<"3.5"',
231-
'importlib-metadata==2.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
232-
"virtualenv>=20.13.0", # Sync with importlib-metadata and pathlib2
228+
'pathlib2==2.3.6;python_version<"3.5"', # Sync with "virtualenv"
229+
'importlib-metadata==2.1.3;python_version<"3.6"',
230+
'importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
231+
"virtualenv>=20.13.1", # Sync with importlib-metadata and pathlib2
233232
"pycparser==2.21",
234233
'pymysql==0.10.1;python_version<"3.6"',
235234
'pymysql==1.0.2;python_version>="3.6"',
@@ -244,7 +243,7 @@
244243
'Pillow==9.0.1;python_version>="3.7"',
245244
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
246245
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
247-
'rich==11.1.0;python_version>="3.6.2" and python_version<"4.0"',
246+
'rich==11.1.0;python_version>="3.6" and python_version<"4.0"',
248247
'tornado==5.1.1;python_version<"3.5"',
249248
'tornado==6.1;python_version>="3.5"',
250249
'pdfminer.six==20191110;python_version<"3.5"',

0 commit comments

Comments
 (0)