Skip to content

Commit 4ed8cc7

Browse files
committed
Refresh Python dependencies
1 parent f46cca9 commit 4ed8cc7

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pathspec==0.12.1
1414
Babel==2.17.0
1515
paginate==0.5.7
1616
mkdocs==1.6.1
17-
mkdocs-material==9.6.14
17+
mkdocs-material==9.6.15
1818
mkdocs-exclude-search==0.6.6
1919
mkdocs-simple-hooks==0.1.5
2020
mkdocs-material-extensions==1.3.1

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ parse>=1.20.2
2626
parse-type>=0.6.4
2727
colorama>=0.4.6
2828
pyyaml>=6.0.2
29-
pygments>=2.19.1
29+
pygments>=2.19.2
3030
pyreadline3>=3.5.3;platform_system=="Windows"
3131
tabcompleter>=1.4.0
3232
pdbp>=1.7.0
3333
idna==3.10
3434
chardet==5.2.0
3535
charset-normalizer>=3.4.2,<4
3636
urllib3>=1.26.20,<2;python_version<"3.10"
37-
urllib3>=1.26.20,<2.5.0;python_version>="3.10"
37+
urllib3>=1.26.20,<2.6.0;python_version>="3.10"
3838
requests==2.32.4
3939
sniffio==1.3.1
4040
h11==0.16.0
@@ -55,14 +55,14 @@ iniconfig==2.1.0
5555
pluggy==1.5.0;python_version<"3.9"
5656
pluggy==1.6.0;python_version>="3.9"
5757
pytest==8.3.5;python_version<"3.9"
58-
pytest==8.4.0;python_version>="3.9"
58+
pytest==8.4.1;python_version>="3.9"
5959
pytest-html==4.0.2
6060
pytest-metadata==3.1.1
6161
pytest-ordering==0.6
6262
pytest-rerunfailures==14.0;python_version<"3.9"
6363
pytest-rerunfailures==15.1;python_version>="3.9"
6464
pytest-xdist==3.6.1;python_version<"3.9"
65-
pytest-xdist==3.7.0;python_version>="3.9"
65+
pytest-xdist==3.8.0;python_version>="3.9"
6666
parameterized==0.9.0
6767
behave==1.2.6
6868
soupsieve==2.7
@@ -81,9 +81,9 @@ coverage>=7.9.1;python_version>="3.9"
8181
pytest-cov>=5.0.0;python_version<"3.9"
8282
pytest-cov>=6.2.1;python_version>="3.9"
8383
flake8==5.0.4;python_version<"3.9"
84-
flake8==7.2.0;python_version>="3.9"
84+
flake8==7.3.0;python_version>="3.9"
8585
mccabe==0.7.0
8686
pyflakes==2.5.0;python_version<"3.9"
87-
pyflakes==3.3.2;python_version>="3.9"
87+
pyflakes==3.4.0;python_version>="3.9"
8888
pycodestyle==2.9.1;python_version<"3.9"
89-
pycodestyle==2.13.0;python_version>="3.9"
89+
pycodestyle==2.14.0;python_version>="3.9"

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
print("You are currently using Python %s\n" % current_ver)
3737
sys.exit()
3838
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'")
4040
flake8_status = os.system("flake8 --exclude=recordings,temp")
4141
if flake8_status != 0:
4242
print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")
@@ -174,15 +174,15 @@
174174
'parse-type>=0.6.4',
175175
'colorama>=0.4.6',
176176
'pyyaml>=6.0.2',
177-
'pygments>=2.19.1',
177+
'pygments>=2.19.2',
178178
'pyreadline3>=3.5.3;platform_system=="Windows"',
179179
"tabcompleter>=1.4.0",
180180
"pdbp>=1.7.0",
181181
"idna==3.10",
182182
'chardet==5.2.0',
183183
'charset-normalizer>=3.4.2,<4',
184184
'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"',
186186
'requests==2.32.4',
187187
'sniffio==1.3.1',
188188
'h11==0.16.0',
@@ -203,14 +203,14 @@
203203
'pluggy==1.5.0;python_version<"3.9"',
204204
'pluggy==1.6.0;python_version>="3.9"',
205205
'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"',
207207
"pytest-html==4.0.2", # Newer ones had issues
208208
'pytest-metadata==3.1.1',
209209
"pytest-ordering==0.6",
210210
'pytest-rerunfailures==14.0;python_version<"3.9"',
211211
'pytest-rerunfailures==15.1;python_version>="3.9"',
212212
'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"',
214214
'parameterized==0.9.0',
215215
"behave==1.2.6",
216216
'soupsieve==2.7',
@@ -242,12 +242,12 @@
242242
# Usage: flake8
243243
"flake8": [
244244
'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"',
246246
"mccabe==0.7.0",
247247
'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"',
249249
'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"',
251251
],
252252
# pip install -e .[ipdb]
253253
# (Not needed for debugging anymore. SeleniumBase now includes "pdbp".)
@@ -275,7 +275,7 @@
275275
# (An optional library for image-processing.)
276276
"pillow": [
277277
'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"',
279279
],
280280
# pip install -e .[pip-system-certs]
281281
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)

0 commit comments

Comments
 (0)