Skip to content

Commit d5f481f

Browse files
committed
Refresh Python dependencies
1 parent 9617c33 commit d5f481f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ attrs>=25.1.0
77
certifi>=2025.1.31
88
exceptiongroup>=1.2.2
99
websockets~=13.1;python_version<"3.9"
10-
websockets>=14.2;python_version>="3.9"
10+
websockets>=15.0;python_version>="3.9"
1111
filelock~=3.16.1;python_version<"3.9"
1212
filelock>=3.17.0;python_version>="3.9"
1313
fasteners>=0.19
@@ -38,8 +38,8 @@ sniffio==1.3.1
3838
h11==0.14.0
3939
outcome==1.3.0.post0
4040
trio==0.27.0;python_version<"3.9"
41-
trio==0.28.0;python_version>="3.9"
42-
trio-websocket==0.11.1
41+
trio==0.29.0;python_version>="3.9"
42+
trio-websocket==0.12.1
4343
wsproto==1.2.0
4444
websocket-client==1.8.0
4545
selenium==4.27.1;python_version<"3.9"
@@ -74,7 +74,7 @@ coverage>=7.6.12;python_version>="3.9"
7474
pytest-cov>=5.0.0;python_version<"3.9"
7575
pytest-cov>=6.0.0;python_version>="3.9"
7676
flake8==5.0.4;python_version<"3.9"
77-
flake8==7.1.1;python_version>="3.9"
77+
flake8==7.1.2;python_version>="3.9"
7878
mccabe==0.7.0
7979
pyflakes==2.5.0;python_version<"3.9"
8080
pyflakes==3.2.0;python_version>="3.9"

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
print("\nERROR! Publishing to PyPI requires Python>=3.9")
3535
sys.exit()
3636
print("\n*** Checking code health with flake8:\n")
37-
os.system("python -m pip install 'flake8==7.1.1'")
37+
os.system("python -m pip install 'flake8==7.1.2'")
3838
flake8_status = os.system("flake8 --exclude=recordings,temp")
3939
if flake8_status != 0:
4040
print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")
@@ -156,7 +156,7 @@
156156
"certifi>=2025.1.31",
157157
"exceptiongroup>=1.2.2",
158158
'websockets~=13.1;python_version<"3.9"',
159-
'websockets>=14.2;python_version>="3.9"',
159+
'websockets>=15.0;python_version>="3.9"',
160160
'filelock~=3.16.1;python_version<"3.9"',
161161
'filelock>=3.17.0;python_version>="3.9"',
162162
'fasteners>=0.19',
@@ -187,8 +187,8 @@
187187
'h11==0.14.0',
188188
'outcome==1.3.0.post0',
189189
'trio==0.27.0;python_version<"3.9"',
190-
'trio==0.28.0;python_version>="3.9"',
191-
'trio-websocket==0.11.1',
190+
'trio==0.29.0;python_version>="3.9"',
191+
'trio-websocket==0.12.1',
192192
'wsproto==1.2.0',
193193
'websocket-client==1.8.0',
194194
'selenium==4.27.1;python_version<"3.9"',
@@ -236,7 +236,7 @@
236236
# Usage: flake8
237237
"flake8": [
238238
'flake8==5.0.4;python_version<"3.9"',
239-
'flake8==7.1.1;python_version>="3.9"',
239+
'flake8==7.1.2;python_version>="3.9"',
240240
"mccabe==0.7.0",
241241
'pyflakes==2.5.0;python_version<"3.9"',
242242
'pyflakes==3.2.0;python_version>="3.9"',

0 commit comments

Comments
 (0)