Skip to content

Commit 2a929c8

Browse files
committed
Refresh Python dependencies
1 parent 289ea85 commit 2a929c8

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

requirements.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.5"
77
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
88
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
9-
setuptools>=62.3.3;python_version>="3.7"
9+
setuptools>=62.4.0;python_version>="3.7"
1010
setuptools-scm>=5.0.2;python_version<"3.6"
1111
setuptools-scm>=6.4.2;python_version>="3.6"
1212
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
@@ -40,10 +40,12 @@ charset-normalizer==2.0.12;python_version>="3.5"
4040
urllib3==1.26.9
4141
requests==2.27.1;python_version<"3.5"
4242
requests==2.25.1;python_version>="3.5" and python_version<"3.6"
43-
requests==2.27.1;python_version>="3.6"
43+
requests==2.27.1;python_version>="3.6" and python_version<"3.7"
44+
requests==2.28.0;python_version>="3.7"
4445
nose==1.3.7
4546
sniffio==1.2.0;python_version>="3.7"
4647
h11==0.13.0;python_version>="3.7"
48+
outcome==1.2.0;python_version>="3.7"
4749
trio==0.21.0;python_version>="3.7"
4850
trio-websocket==0.9.2;python_version>="3.7"
4951
pyopenssl==22.0.0;python_version>="3.7"
@@ -132,7 +134,7 @@ tornado==6.1;python_version>="3.5"
132134
pdfminer.six==20191110;python_version<"3.5"
133135
pdfminer.six==20201018;python_version>="3.5" and python_version<"3.6"
134136
pdfminer.six==20211012;python_version>="3.6" and python_version<"3.7"
135-
pdfminer.six==20220319;python_version>="3.7"
137+
pdfminer.six==20220524;python_version>="3.7"
136138

137139
# --- Testing Requirements --- #
138140
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
'setuptools>=44.1.1;python_version<"3.5"',
132132
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134-
'setuptools>=62.3.3;python_version>="3.7"',
134+
'setuptools>=62.4.0;python_version>="3.7"',
135135
'setuptools-scm>=5.0.2;python_version<"3.6"',
136136
'setuptools-scm>=6.4.2;python_version>="3.6"',
137137
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
@@ -165,10 +165,12 @@
165165
"urllib3==1.26.9", # Must stay in sync with "requests"
166166
'requests==2.27.1;python_version<"3.5"',
167167
'requests==2.25.1;python_version>="3.5" and python_version<"3.6"',
168-
'requests==2.27.1;python_version>="3.6"',
168+
'requests==2.27.1;python_version>="3.6" and python_version<"3.7"',
169+
'requests==2.28.0;python_version>="3.7"',
169170
"nose==1.3.7",
170171
'sniffio==1.2.0;python_version>="3.7"',
171172
'h11==0.13.0;python_version>="3.7"',
173+
'outcome==1.2.0;python_version>="3.7"',
172174
'trio==0.21.0;python_version>="3.7"',
173175
'trio-websocket==0.9.2;python_version>="3.7"',
174176
'pyopenssl==22.0.0;python_version>="3.7"',
@@ -257,7 +259,7 @@
257259
'pdfminer.six==20191110;python_version<"3.5"',
258260
'pdfminer.six==20201018;python_version>="3.5" and python_version<"3.6"', # noqa: E501
259261
'pdfminer.six==20211012;python_version>="3.6" and python_version<"3.7"', # noqa: E501
260-
'pdfminer.six==20220319;python_version>="3.7"',
262+
'pdfminer.six==20220524;python_version>="3.7"',
261263
],
262264
extras_require={
263265
# pip install -e .[coverage]

0 commit comments

Comments
 (0)