Skip to content

Commit 8580d0c

Browse files
committed
Refresh Python dependencies
1 parent e33fc9e commit 8580d0c

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pathspec==0.12.1
1414
Babel==2.17.0
1515
paginate==0.5.7
1616
mkdocs==1.6.1
17-
mkdocs-material==9.6.21
17+
mkdocs-material==9.6.22
1818
mkdocs-exclude-search==0.6.6
1919
mkdocs-simple-hooks==0.1.5
2020
mkdocs-material-extensions==1.3.1

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ pygments>=2.19.2
3434
pyreadline3>=3.5.4;platform_system=="Windows"
3535
tabcompleter>=1.4.0
3636
pdbp>=1.7.1
37-
idna==3.10
37+
idna>=3.11
3838
chardet==5.2.0
39-
charset-normalizer>=3.4.3,<4
39+
charset-normalizer>=3.4.4,<4
4040
urllib3>=1.26.20,<2;python_version<"3.10"
4141
urllib3>=1.26.20,<2.6.0;python_version>="3.10"
4242
requests==2.32.4;python_version<"3.9"
@@ -87,7 +87,8 @@ rich>=14.2.0,<15
8787
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
8888

8989
coverage>=7.6.1;python_version<"3.9"
90-
coverage>=7.10.7;python_version>="3.9"
90+
coverage>=7.10.7;python_version>="3.9" and python_version<"3.10"
91+
coverage>=7.11.0;python_version>="3.10"
9192
pytest-cov>=5.0.0;python_version<"3.9"
9293
pytest-cov>=7.0.0;python_version>="3.9"
9394
flake8==5.0.4;python_version<"3.9"

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@
181181
'pyreadline3>=3.5.4;platform_system=="Windows"',
182182
"tabcompleter>=1.4.0",
183183
"pdbp>=1.7.1",
184-
"idna==3.10",
184+
"idna>=3.11",
185185
'chardet==5.2.0',
186-
'charset-normalizer>=3.4.3,<4',
186+
'charset-normalizer>=3.4.4,<4',
187187
'urllib3>=1.26.20,<2;python_version<"3.10"',
188188
'urllib3>=1.26.20,<2.6.0;python_version>="3.10"',
189189
'requests==2.32.4;python_version<"3.9"',
@@ -243,7 +243,8 @@
243243
# Usage: coverage run -m pytest; coverage html; coverage report
244244
"coverage": [
245245
'coverage>=7.6.1;python_version<"3.9"',
246-
'coverage>=7.10.7;python_version>="3.9"',
246+
'coverage>=7.10.7;python_version>="3.9" and python_version<"3.10"',
247+
'coverage>=7.11.0;python_version>="3.10"',
247248
'pytest-cov>=5.0.0;python_version<"3.9"',
248249
'pytest-cov>=7.0.0;python_version>="3.9"',
249250
],
@@ -286,7 +287,8 @@
286287
# (An optional library for image-processing.)
287288
"pillow": [
288289
'Pillow>=10.4.0;python_version<"3.9"',
289-
'Pillow>=11.3.0;python_version>="3.9"',
290+
'Pillow>=11.3.0;python_version>="3.9" and python_version<"3.10"',
291+
'Pillow>=12.0.0;python_version>="3.10"',
290292
],
291293
# pip install -e .[pip-system-certs]
292294
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)

0 commit comments

Comments
 (0)