Skip to content

Commit b8c879e

Browse files
committed
Refresh Python dependencies
1 parent 9a665cb commit b8c879e

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

mkdocs_build/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ click==8.3.1
1010
ghp-import==2.1.0
1111
watchdog==6.0.0
1212
cairocffi==1.7.1
13-
pathspec==1.0.3
14-
Babel==2.17.0
13+
pathspec==1.0.4
14+
Babel==2.18.0
1515
paginate==0.5.7
1616
mkdocs==1.6.1
1717
mkdocs-material==9.6.23

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pip>=25.3
1+
pip>=26.0
22
packaging>=26.0
33
setuptools~=70.2;python_version<"3.10"
44
setuptools>=80.10.2;python_version>="3.10"
@@ -45,7 +45,8 @@ wsproto~=1.3.2;python_version>="3.10"
4545
websocket-client~=1.9.0
4646
selenium==4.32.0;python_version<"3.10"
4747
selenium==4.40.0;python_version>="3.10"
48-
cssselect==1.3.0
48+
cssselect==1.3.0;python_version<"3.10"
49+
cssselect>=1.4.0,<2;python_version>="3.10"
4950
nest-asyncio==1.6.0
5051
sortedcontainers==2.4.0
5152
execnet==2.1.1;python_version<"3.10"
@@ -71,7 +72,7 @@ PyAutoGUI>=0.9.54;platform_system=="Linux"
7172
markdown-it-py==3.0.0;python_version<"3.10"
7273
markdown-it-py==4.0.0;python_version>="3.10"
7374
mdurl==0.1.2
74-
rich>=14.3.1,<15
75+
rich>=14.3.2,<15
7576

7677
# --- Testing Requirements --- #
7778
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
],
147147
python_requires=">=3.9",
148148
install_requires=[
149-
'pip>=25.3',
149+
'pip>=26.0',
150150
'packaging>=26.0',
151151
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
152152
'setuptools>=80.10.2;python_version>="3.10"',
@@ -193,7 +193,8 @@
193193
'websocket-client~=1.9.0',
194194
'selenium==4.32.0;python_version<"3.10"',
195195
'selenium==4.40.0;python_version>="3.10"',
196-
'cssselect==1.3.0',
196+
'cssselect==1.3.0;python_version<"3.10"',
197+
'cssselect>=1.4.0,<2;python_version>="3.10"',
197198
'nest-asyncio==1.6.0',
198199
'sortedcontainers==2.4.0',
199200
'execnet==2.1.1;python_version<"3.10"',
@@ -219,7 +220,7 @@
219220
'markdown-it-py==3.0.0;python_version<"3.10"',
220221
'markdown-it-py==4.0.0;python_version>="3.10"',
221222
'mdurl==0.1.2',
222-
'rich>=14.3.1,<15',
223+
'rich>=14.3.2,<15',
223224
],
224225
extras_require={
225226
# pip install -e .[allure]
@@ -261,7 +262,7 @@
261262
"pdfminer": [
262263
'pdfminer.six==20251107;python_version<"3.10"',
263264
'pdfminer.six==20260107;python_version>="3.10"',
264-
'cryptography==46.0.3',
265+
'cryptography==46.0.4',
265266
'cffi==2.0.0',
266267
'pycparser==2.23;python_version<"3.10"',
267268
'pycparser==3.0;python_version>="3.10"',
@@ -287,11 +288,11 @@
287288
# pip install -e .[playwright]
288289
# (For the Playwright integration.)
289290
"playwright": [
290-
"playwright>=1.56.0",
291+
"playwright>=1.58.0",
291292
],
292293
# pip install -e .[psutil]
293294
"psutil": [
294-
"psutil>=7.1.3",
295+
"psutil>=7.2.2",
295296
],
296297
# pip install -e .[pyautogui]
297298
# (Already a required dependency on Linux now.)

0 commit comments

Comments
 (0)