Skip to content

Commit caa311a

Browse files
committed
Refresh Python dependencies
1 parent 1bf5f13 commit caa311a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ rich>=14.2.0,<15
7676
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
7777

7878
coverage>=7.10.7;python_version<"3.10"
79-
coverage>=7.13.0;python_version>="3.10"
79+
coverage>=7.13.1;python_version>="3.10"
8080
pytest-cov>=7.0.0
8181
flake8==7.3.0
8282
mccabe==0.7.0

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233
# Usage: coverage run -m pytest; coverage html; coverage report
234234
"coverage": [
235235
'coverage>=7.10.7;python_version<"3.10"',
236-
'coverage>=7.13.0;python_version>="3.10"',
236+
'coverage>=7.13.1;python_version>="3.10"',
237237
'pytest-cov>=7.0.0',
238238
],
239239
# pip install -e .[flake8]
@@ -258,7 +258,8 @@
258258
# pip install -e .[pdfminer]
259259
# (An optional library for parsing PDF files.)
260260
"pdfminer": [
261-
'pdfminer.six==20251107',
261+
'pdfminer.six==20251107;python_version<"3.10"',
262+
'pdfminer.six==20251229;python_version>="3.10"',
262263
'cryptography==46.0.3',
263264
'cffi==2.0.0',
264265
'pycparser==2.23',

0 commit comments

Comments
 (0)