Skip to content

Commit 97d5b87

Browse files
committed
Refresh Python dependencies
1 parent dcc985a commit 97d5b87

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
@@ -70,7 +70,8 @@ pytest-forked==1.4.0;python_version>="3.6"
7070
pytest-html==1.22.1;python_version<"3.6"
7171
pytest-html==2.0.1;python_version>="3.6"
7272
pytest-metadata==1.8.0;python_version<"3.6"
73-
pytest-metadata==1.11.0;python_version>="3.6"
73+
pytest-metadata==1.11.0;python_version>="3.6" and python_version<"3.7"
74+
pytest-metadata==2.0.0;python_version>="3.7"
7475
pytest-ordering==0.6
7576
pytest-rerunfailures==8.0;python_version<"3.5"
7677
pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"
@@ -117,12 +118,13 @@ Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
117118
Pillow==9.0.1;python_version>="3.7"
118119
typing-extensions==3.10.0.2;python_version<"3.6"
119120
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
120-
rich==12.0.0;python_version>="3.6" and python_version<"4.0"
121+
rich==12.0.1;python_version>="3.6" and python_version<"4.0"
121122
tornado==5.1.1;python_version<"3.5"
122123
tornado==6.1;python_version>="3.5"
123124
pdfminer.six==20191110;python_version<"3.5"
124125
pdfminer.six==20201018;python_version>="3.5" and python_version<"3.6"
125-
pdfminer.six==20211012;python_version>="3.6"
126+
pdfminer.six==20211012;python_version>="3.6" and python_version<"3.7"
127+
pdfminer.six==20220319;python_version>="3.7"
126128

127129
# --- Testing Requirements --- #
128130
# ("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
@@ -195,7 +195,8 @@
195195
'pytest-html==1.22.1;python_version<"3.6"',
196196
'pytest-html==2.0.1;python_version>="3.6"', # Newer ones had issues
197197
'pytest-metadata==1.8.0;python_version<"3.6"',
198-
'pytest-metadata==1.11.0;python_version>="3.6"',
198+
'pytest-metadata==1.11.0;python_version>="3.6" and python_version<"3.7"', # noqa: E501
199+
'pytest-metadata==2.0.0;python_version>="3.7"',
199200
"pytest-ordering==0.6",
200201
'pytest-rerunfailures==8.0;python_version<"3.5"',
201202
'pytest-rerunfailures==9.1.1;python_version>="3.5" and python_version<"3.6"', # noqa: E501
@@ -242,12 +243,13 @@
242243
'Pillow==9.0.1;python_version>="3.7"',
243244
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
244245
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
245-
'rich==12.0.0;python_version>="3.6" and python_version<"4.0"',
246+
'rich==12.0.1;python_version>="3.6" and python_version<"4.0"',
246247
'tornado==5.1.1;python_version<"3.5"',
247248
'tornado==6.1;python_version>="3.5"',
248249
'pdfminer.six==20191110;python_version<"3.5"',
249250
'pdfminer.six==20201018;python_version>="3.5" and python_version<"3.6"', # noqa: E501
250-
'pdfminer.six==20211012;python_version>="3.6"',
251+
'pdfminer.six==20211012;python_version>="3.6" and python_version<"3.7"', # noqa: E501
252+
'pdfminer.six==20220319;python_version>="3.7"',
251253
],
252254
extras_require={
253255
# pip install -e .[coverage]

0 commit comments

Comments
 (0)