Skip to content

Commit ef7e1f1

Browse files
committed
Refresh Python dependencies
1 parent 72832a5 commit ef7e1f1

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pip>=25.0.1
22
packaging>=24.2
33
setuptools~=70.2;python_version<"3.10"
4-
setuptools>=78.0.2;python_version>="3.10"
4+
setuptools>=78.1.0;python_version>="3.10"
55
wheel>=0.45.1
66
attrs>=25.3.0
77
certifi>=2025.1.31
@@ -15,7 +15,7 @@ mycdp>=1.1.1
1515
pynose>=1.5.4
1616
platformdirs>=4.3.6;python_version<"3.9"
1717
platformdirs>=4.3.7;python_version>="3.9"
18-
typing-extensions>=4.12.2
18+
typing-extensions>=4.13.0
1919
sbvirtualdisplay>=1.4.0
2020
MarkupSafe==2.1.5;python_version<"3.9"
2121
MarkupSafe>=3.0.2;python_version>="3.9"

setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
'pip>=25.0.1',
151151
'packaging>=24.2',
152152
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
153-
'setuptools>=78.0.2;python_version>="3.10"',
153+
'setuptools>=78.1.0;python_version>="3.10"',
154154
'wheel>=0.45.1',
155155
'attrs>=25.3.0',
156156
"certifi>=2025.1.31",
@@ -164,7 +164,7 @@
164164
"pynose>=1.5.4",
165165
'platformdirs>=4.3.6;python_version<"3.9"',
166166
'platformdirs>=4.3.7;python_version>="3.9"',
167-
'typing-extensions>=4.12.2',
167+
'typing-extensions>=4.13.0',
168168
"sbvirtualdisplay>=1.4.0",
169169
'MarkupSafe==2.1.5;python_version<"3.9"',
170170
'MarkupSafe>=3.0.2;python_version>="3.9"',
@@ -254,12 +254,14 @@
254254
# pip install -e .[mss]
255255
# (An optional library for tile_windows() in CDP Mode.)
256256
"mss": [
257-
"mss==9.0.2", # Next one drops Python 3.8/3.9
257+
'mss==9.0.2;python_version<"3.9"',
258+
'mss==10.0.0;python_version>="3.9"',
258259
],
259260
# pip install -e .[pdfminer]
260261
# (An optional library for parsing PDF files.)
261262
"pdfminer": [
262-
'pdfminer.six==20250324',
263+
'pdfminer.six==20250324;python_version<"3.9"',
264+
'pdfminer.six==20250327;python_version>="3.9"',
263265
'cryptography==39.0.2;python_version<"3.9"',
264266
'cryptography==44.0.2;python_version>="3.9"',
265267
'cffi==1.17.1',

0 commit comments

Comments
 (0)