Skip to content

Commit 78b180f

Browse files
committedJan 9, 2025
Refresh Python dependencies
1 parent cd38f86 commit 78b180f

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed
 

‎mkdocs_build/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Minimum Python version: 3.9 (for generating docs only)
33

44
regex>=2024.11.6
5-
pymdown-extensions>=10.13
5+
pymdown-extensions>=10.14
66
pipdeptree>=2.24.0
77
python-dateutil>=2.8.2
88
Markdown==3.7

‎requirements.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pip>=24.3.1
22
packaging>=24.2
33
setuptools~=70.2;python_version<"3.10"
4-
setuptools>=75.6.0;python_version>="3.10"
4+
setuptools>=75.8.0;python_version>="3.10"
55
wheel>=0.45.1
66
attrs>=24.3.0
77
certifi>=2024.12.14
@@ -23,7 +23,7 @@ parse>=1.20.2
2323
parse-type>=0.6.4
2424
colorama>=0.4.6
2525
pyyaml>=6.0.2
26-
pygments>=2.18.0
26+
pygments>=2.19.1
2727
pyreadline3>=3.5.3;platform_system=="Windows"
2828
tabcompleter>=1.4.0
2929
pdbp>=1.6.1
@@ -36,7 +36,8 @@ requests==2.32.3
3636
sniffio==1.3.1
3737
h11==0.14.0
3838
outcome==1.3.0.post0
39-
trio==0.27.0
39+
trio==0.27.0;python_version<"3.9"
40+
trio==0.28.0;python_version>="3.9"
4041
trio-websocket==0.11.1
4142
wsproto==1.2.0
4243
websocket-client==1.8.0
@@ -67,7 +68,7 @@ rich==13.9.4
6768
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
6869

6970
coverage>=7.6.1;python_version<"3.9"
70-
coverage>=7.6.9;python_version>="3.9"
71+
coverage>=7.6.10;python_version>="3.9"
7172
pytest-cov>=5.0.0;python_version<"3.9"
7273
pytest-cov>=6.0.0;python_version>="3.9"
7374
flake8==5.0.4;python_version<"3.9"

‎setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
'pip>=24.3.1',
151151
'packaging>=24.2',
152152
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
153-
'setuptools>=75.6.0;python_version>="3.10"',
153+
'setuptools>=75.8.0;python_version>="3.10"',
154154
'wheel>=0.45.1',
155155
'attrs>=24.3.0',
156156
"certifi>=2024.12.14",
@@ -172,7 +172,7 @@
172172
'parse-type>=0.6.4',
173173
'colorama>=0.4.6',
174174
'pyyaml>=6.0.2',
175-
'pygments>=2.18.0',
175+
'pygments>=2.19.1',
176176
'pyreadline3>=3.5.3;platform_system=="Windows"',
177177
"tabcompleter>=1.4.0",
178178
"pdbp>=1.6.1",
@@ -185,7 +185,8 @@
185185
'sniffio==1.3.1',
186186
'h11==0.14.0',
187187
'outcome==1.3.0.post0',
188-
'trio==0.27.0',
188+
'trio==0.27.0;python_version<"3.9"',
189+
'trio==0.28.0;python_version>="3.9"',
189190
'trio-websocket==0.11.1',
190191
'wsproto==1.2.0',
191192
'websocket-client==1.8.0',
@@ -225,7 +226,7 @@
225226
# Usage: coverage run -m pytest; coverage html; coverage report
226227
"coverage": [
227228
'coverage>=7.6.1;python_version<"3.9"',
228-
'coverage>=7.6.9;python_version>="3.9"',
229+
'coverage>=7.6.10;python_version>="3.9"',
229230
'pytest-cov>=5.0.0;python_version<"3.9"',
230231
'pytest-cov>=6.0.0;python_version>="3.9"',
231232
],
@@ -264,7 +265,7 @@
264265
# (An optional library for image-processing.)
265266
"pillow": [
266267
'Pillow>=10.4.0;python_version<"3.9"',
267-
'Pillow>=11.0.0;python_version>="3.9"',
268+
'Pillow>=11.1.0;python_version>="3.9"',
268269
],
269270
# pip install -e .[pip-system-certs]
270271
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)

0 commit comments

Comments
 (0)
Please sign in to comment.