|
34 | 34 | print("\nERROR! Publishing to PyPI requires Python>=3.9")
|
35 | 35 | sys.exit()
|
36 | 36 | 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'") |
38 | 38 | flake8_status = os.system("flake8 --exclude=recordings,temp")
|
39 | 39 | if flake8_status != 0:
|
40 | 40 | print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")
|
|
156 | 156 | "certifi>=2025.1.31",
|
157 | 157 | "exceptiongroup>=1.2.2",
|
158 | 158 | 'websockets~=13.1;python_version<"3.9"',
|
159 |
| - 'websockets>=14.2;python_version>="3.9"', |
| 159 | + 'websockets>=15.0;python_version>="3.9"', |
160 | 160 | 'filelock~=3.16.1;python_version<"3.9"',
|
161 | 161 | 'filelock>=3.17.0;python_version>="3.9"',
|
162 | 162 | 'fasteners>=0.19',
|
|
187 | 187 | 'h11==0.14.0',
|
188 | 188 | 'outcome==1.3.0.post0',
|
189 | 189 | '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', |
192 | 192 | 'wsproto==1.2.0',
|
193 | 193 | 'websocket-client==1.8.0',
|
194 | 194 | 'selenium==4.27.1;python_version<"3.9"',
|
|
236 | 236 | # Usage: flake8
|
237 | 237 | "flake8": [
|
238 | 238 | '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"', |
240 | 240 | "mccabe==0.7.0",
|
241 | 241 | 'pyflakes==2.5.0;python_version<"3.9"',
|
242 | 242 | 'pyflakes==3.2.0;python_version>="3.9"',
|
|
0 commit comments