|
36 | 36 | print("You are currently using Python %s\n" % current_ver)
|
37 | 37 | sys.exit()
|
38 | 38 | print("\n*** Checking code health with flake8:\n")
|
39 |
| - os.system("python -m pip install 'flake8==7.2.0'") |
| 39 | + os.system("python -m pip install 'flake8==7.3.0'") |
40 | 40 | flake8_status = os.system("flake8 --exclude=recordings,temp")
|
41 | 41 | if flake8_status != 0:
|
42 | 42 | print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")
|
|
174 | 174 | 'parse-type>=0.6.4',
|
175 | 175 | 'colorama>=0.4.6',
|
176 | 176 | 'pyyaml>=6.0.2',
|
177 |
| - 'pygments>=2.19.1', |
| 177 | + 'pygments>=2.19.2', |
178 | 178 | 'pyreadline3>=3.5.3;platform_system=="Windows"',
|
179 | 179 | "tabcompleter>=1.4.0",
|
180 | 180 | "pdbp>=1.7.0",
|
181 | 181 | "idna==3.10",
|
182 | 182 | 'chardet==5.2.0',
|
183 | 183 | 'charset-normalizer>=3.4.2,<4',
|
184 | 184 | 'urllib3>=1.26.20,<2;python_version<"3.10"',
|
185 |
| - 'urllib3>=1.26.20,<2.5.0;python_version>="3.10"', |
| 185 | + 'urllib3>=1.26.20,<2.6.0;python_version>="3.10"', |
186 | 186 | 'requests==2.32.4',
|
187 | 187 | 'sniffio==1.3.1',
|
188 | 188 | 'h11==0.16.0',
|
|
203 | 203 | 'pluggy==1.5.0;python_version<"3.9"',
|
204 | 204 | 'pluggy==1.6.0;python_version>="3.9"',
|
205 | 205 | 'pytest==8.3.5;python_version<"3.9"',
|
206 |
| - 'pytest==8.4.0;python_version>="3.9"', |
| 206 | + 'pytest==8.4.1;python_version>="3.9"', |
207 | 207 | "pytest-html==4.0.2", # Newer ones had issues
|
208 | 208 | 'pytest-metadata==3.1.1',
|
209 | 209 | "pytest-ordering==0.6",
|
210 | 210 | 'pytest-rerunfailures==14.0;python_version<"3.9"',
|
211 | 211 | 'pytest-rerunfailures==15.1;python_version>="3.9"',
|
212 | 212 | 'pytest-xdist==3.6.1;python_version<"3.9"',
|
213 |
| - 'pytest-xdist==3.7.0;python_version>="3.9"', |
| 213 | + 'pytest-xdist==3.8.0;python_version>="3.9"', |
214 | 214 | 'parameterized==0.9.0',
|
215 | 215 | "behave==1.2.6",
|
216 | 216 | 'soupsieve==2.7',
|
|
242 | 242 | # Usage: flake8
|
243 | 243 | "flake8": [
|
244 | 244 | 'flake8==5.0.4;python_version<"3.9"',
|
245 |
| - 'flake8==7.2.0;python_version>="3.9"', |
| 245 | + 'flake8==7.3.0;python_version>="3.9"', |
246 | 246 | "mccabe==0.7.0",
|
247 | 247 | 'pyflakes==2.5.0;python_version<"3.9"',
|
248 |
| - 'pyflakes==3.3.2;python_version>="3.9"', |
| 248 | + 'pyflakes==3.4.0;python_version>="3.9"', |
249 | 249 | 'pycodestyle==2.9.1;python_version<"3.9"',
|
250 |
| - 'pycodestyle==2.13.0;python_version>="3.9"', |
| 250 | + 'pycodestyle==2.14.0;python_version>="3.9"', |
251 | 251 | ],
|
252 | 252 | # pip install -e .[ipdb]
|
253 | 253 | # (Not needed for debugging anymore. SeleniumBase now includes "pdbp".)
|
|
275 | 275 | # (An optional library for image-processing.)
|
276 | 276 | "pillow": [
|
277 | 277 | 'Pillow>=10.4.0;python_version<"3.9"',
|
278 |
| - 'Pillow>=11.2.1;python_version>="3.9"', |
| 278 | + 'Pillow>=11.3.0;python_version>="3.9"', |
279 | 279 | ],
|
280 | 280 | # pip install -e .[pip-system-certs]
|
281 | 281 | # (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)
|
|
0 commit comments