Skip to content

Commit 39a741d

Browse files
committed
Refresh Python dependencies
1 parent 8f63b0d commit 39a741d

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

requirements.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ setuptools>=68.0.0;python_version<"3.8"
66
setuptools~=70.2;python_version>="3.8" and python_version<"3.10"
77
setuptools>=70.2.0;python_version>="3.10"
88
wheel>=0.42.0;python_version<"3.8"
9-
wheel>=0.43.0;python_version>="3.8"
10-
attrs>=23.2.0
9+
wheel>=0.44.0;python_version>="3.8"
10+
attrs>=24.2.0
1111
certifi>=2024.7.4
1212
exceptiongroup>=1.2.2
1313
filelock>=3.12.2;python_version<"3.8"
@@ -17,7 +17,8 @@ platformdirs>=4.2.2;python_version>="3.8"
1717
typing-extensions>=4.12.2;python_version>="3.8"
1818
parse>=1.20.2
1919
parse-type>=0.6.2
20-
pyyaml>=6.0.1
20+
pyyaml==6.0.1;python_version<"3.8"
21+
pyyaml>=6.0.2;python_version>="3.8"
2122
six==1.16.0
2223
idna==3.7
2324
chardet==5.2.0
@@ -30,7 +31,7 @@ sniffio==1.3.1
3031
h11==0.14.0
3132
outcome==1.3.0.post0
3233
trio==0.22.2;python_version<"3.8"
33-
trio==0.26.0;python_version>="3.8"
34+
trio==0.26.1;python_version>="3.8"
3435
trio-websocket==0.11.1
3536
wsproto==1.2.0
3637
websocket-client==1.8.0;python_version>="3.8"
@@ -78,13 +79,13 @@ rich==13.7.1
7879
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
7980

8081
coverage==7.2.7;python_version<"3.8"
81-
coverage>=7.6.0;python_version>="3.8"
82+
coverage>=7.6.1;python_version>="3.8"
8283
pytest-cov==4.1.0;python_version<"3.8"
8384
pytest-cov>=5.0.0;python_version>="3.8"
8485
flake8==5.0.4;python_version<"3.9"
85-
flake8==7.1.0;python_version>="3.9"
86+
flake8==7.1.1;python_version>="3.9"
8687
mccabe==0.7.0
8788
pyflakes==2.5.0;python_version<"3.9"
8889
pyflakes==3.2.0;python_version>="3.9"
8990
pycodestyle==2.9.1;python_version<"3.9"
90-
pycodestyle==2.12.0;python_version>="3.9"
91+
pycodestyle==2.12.1;python_version>="3.9"

setup.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@
154154
'setuptools~=70.2;python_version>="3.8" and python_version<"3.10"',
155155
'setuptools>=70.2.0;python_version>="3.10"', # 71.0.x has issues
156156
'wheel>=0.42.0;python_version<"3.8"',
157-
'wheel>=0.43.0;python_version>="3.8"',
158-
'attrs>=23.2.0',
157+
'wheel>=0.44.0;python_version>="3.8"',
158+
'attrs>=24.2.0',
159159
"certifi>=2024.7.4",
160160
"exceptiongroup>=1.2.2",
161161
'filelock>=3.12.2;python_version<"3.8"',
@@ -165,7 +165,8 @@
165165
'typing-extensions>=4.12.2;python_version>="3.8"',
166166
'parse>=1.20.2',
167167
'parse-type>=0.6.2',
168-
'pyyaml>=6.0.1',
168+
'pyyaml==6.0.1;python_version<"3.8"',
169+
'pyyaml>=6.0.2;python_version>="3.8"',
169170
"six==1.16.0",
170171
"idna==3.7",
171172
'chardet==5.2.0',
@@ -178,7 +179,7 @@
178179
'h11==0.14.0',
179180
'outcome==1.3.0.post0',
180181
'trio==0.22.2;python_version<"3.8"',
181-
'trio==0.26.0;python_version>="3.8"',
182+
'trio==0.26.1;python_version>="3.8"',
182183
'trio-websocket==0.11.1',
183184
'wsproto==1.2.0',
184185
'websocket-client==1.8.0;python_version>="3.8"',
@@ -235,20 +236,20 @@
235236
# Usage: coverage run -m pytest; coverage html; coverage report
236237
"coverage": [
237238
'coverage==7.2.7;python_version<"3.8"',
238-
'coverage>=7.6.0;python_version>="3.8"',
239+
'coverage>=7.6.1;python_version>="3.8"',
239240
'pytest-cov==4.1.0;python_version<"3.8"',
240241
'pytest-cov>=5.0.0;python_version>="3.8"',
241242
],
242243
# pip install -e .[flake8]
243244
# Usage: flake8
244245
"flake8": [
245246
'flake8==5.0.4;python_version<"3.9"',
246-
'flake8==7.1.0;python_version>="3.9"',
247+
'flake8==7.1.1;python_version>="3.9"',
247248
"mccabe==0.7.0",
248249
'pyflakes==2.5.0;python_version<"3.9"',
249250
'pyflakes==3.2.0;python_version>="3.9"',
250251
'pycodestyle==2.9.1;python_version<"3.9"',
251-
'pycodestyle==2.12.0;python_version>="3.9"',
252+
'pycodestyle==2.12.1;python_version>="3.9"',
252253
],
253254
# pip install -e .[ipdb]
254255
# (Not needed for debugging anymore. SeleniumBase now includes "pdbp".)
@@ -264,7 +265,7 @@
264265
'cryptography==39.0.2;python_version<"3.9"',
265266
'cryptography==43.0.0;python_version>="3.9"',
266267
'cffi==1.15.1;python_version<"3.8"',
267-
'cffi==1.16.0;python_version>="3.8"',
268+
'cffi==1.17.0;python_version>="3.8"',
268269
"pycparser==2.22",
269270
],
270271
# pip install -e .[pillow]

0 commit comments

Comments
 (0)