Skip to content

Commit 39b09e4

Browse files
committed
Refresh Python dependencies
1 parent e4f1fde commit 39b09e4

File tree

3 files changed

+24
-19
lines changed

3 files changed

+24
-19
lines changed

mkdocs_build/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
regex>=2023.12.25
55
pymdown-extensions>=10.7.1
6-
pipdeptree>=2.16.1
6+
pipdeptree>=2.16.2
77
python-dateutil>=2.8.2
88
Markdown==3.6
99
markdown2==2.4.13
@@ -16,11 +16,11 @@ cairocffi==1.6.1
1616
pathspec==0.12.1
1717
Babel==2.14.0
1818
paginate==0.5.6
19-
lxml==5.1.0
19+
lxml==5.1.1
2020
pyquery==2.0.0
2121
readtime==3.0.0
2222
mkdocs==1.5.3
23-
mkdocs-material==9.5.14
23+
mkdocs-material==9.5.15
2424
mkdocs-exclude-search==0.6.6
2525
mkdocs-simple-hooks==0.1.5
2626
mkdocs-material-extensions==1.3.1

requirements.txt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ wheel>=0.43.0;python_version>="3.8"
77
attrs>=23.2.0
88
certifi>=2024.2.2
99
filelock>=3.12.2;python_version<"3.8"
10-
filelock>=3.13.1;python_version>="3.8"
10+
filelock>=3.13.3;python_version>="3.8"
1111
platformdirs>=4.0.0;python_version<"3.8"
1212
platformdirs>=4.2.0;python_version>="3.8"
1313
typing-extensions>=4.10.0;python_version>="3.8"
@@ -21,7 +21,7 @@ charset-normalizer==3.3.2
2121
urllib3>=1.26.18,<2;python_version<"3.10"
2222
urllib3>=1.26.18,<2.3.0;python_version>="3.10"
2323
requests==2.31.0
24-
pynose==1.5.0
24+
pynose==1.5.1
2525
sniffio==1.3.1
2626
h11==0.14.0
2727
outcome==1.3.0.post0
@@ -30,7 +30,7 @@ trio==0.25.0;python_version>="3.8"
3030
trio-websocket==0.11.1
3131
wsproto==1.2.0
3232
selenium==4.11.2;python_version<"3.8"
33-
selenium==4.18.1;python_version>="3.8"
33+
selenium==4.19.0;python_version>="3.8"
3434
cssselect==1.2.0
3535
sortedcontainers==2.4.0
3636
fasteners==0.19
@@ -69,11 +69,10 @@ rich==13.7.1
6969
# --- Testing Requirements --- #
7070
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
7171

72-
coverage==6.2;python_version<"3.7"
73-
coverage==7.2.7;python_version>="3.7" and python_version<"3.8"
72+
coverage==7.2.7;python_version<"3.8"
7473
coverage==7.4.4;python_version>="3.8"
75-
pytest-cov==4.0.0;python_version<"3.7"
76-
pytest-cov==4.1.0;python_version>="3.7"
74+
pytest-cov==4.1.0;python_version<"3.8"
75+
pytest-cov==5.0.0;python_version>="3.8"
7776
flake8==5.0.4;python_version<"3.9"
7877
flake8==7.0.0;python_version>="3.9"
7978
mccabe==0.7.0

setup.py

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
'attrs>=23.2.0',
156156
"certifi>=2024.2.2",
157157
'filelock>=3.12.2;python_version<"3.8"',
158-
'filelock>=3.13.1;python_version>="3.8"',
158+
'filelock>=3.13.3;python_version>="3.8"',
159159
'platformdirs>=4.0.0;python_version<"3.8"',
160160
'platformdirs>=4.2.0;python_version>="3.8"',
161161
'typing-extensions>=4.10.0;python_version>="3.8"',
@@ -169,7 +169,7 @@
169169
'urllib3>=1.26.18,<2;python_version<"3.10"',
170170
'urllib3>=1.26.18,<2.3.0;python_version>="3.10"',
171171
'requests==2.31.0',
172-
"pynose==1.5.0",
172+
"pynose==1.5.1",
173173
'sniffio==1.3.1',
174174
'h11==0.14.0',
175175
'outcome==1.3.0.post0',
@@ -178,7 +178,7 @@
178178
'trio-websocket==0.11.1',
179179
'wsproto==1.2.0',
180180
'selenium==4.11.2;python_version<"3.8"',
181-
'selenium==4.18.1;python_version>="3.8"',
181+
'selenium==4.19.0;python_version>="3.8"',
182182
'cssselect==1.2.0',
183183
"sortedcontainers==2.4.0",
184184
'fasteners==0.19',
@@ -219,16 +219,17 @@
219219
# Usage: pytest --alluredir=allure_results
220220
# Serve: allure serve allure_results
221221
"allure": [
222-
'allure-pytest==2.13.3',
223-
'allure-python-commons==2.13.3',
224-
'allure-behave==2.13.3',
222+
'allure-pytest==2.13.4',
223+
'allure-python-commons==2.13.4',
224+
'allure-behave==2.13.4',
225225
],
226226
# pip install -e .[coverage]
227227
# Usage: coverage run -m pytest; coverage html; coverage report
228228
"coverage": [
229229
'coverage==7.2.7;python_version<"3.8"',
230230
'coverage==7.4.4;python_version>="3.8"',
231-
'pytest-cov==4.1.0',
231+
'pytest-cov==4.1.0;python_version<"3.8"',
232+
'pytest-cov==5.0.0;python_version>="3.8"',
232233
],
233234
# pip install -e .[flake8]
234235
# Usage: flake8
@@ -256,15 +257,20 @@
256257
'cryptography==42.0.5;python_version>="3.9"',
257258
'cffi==1.15.1;python_version<"3.8"',
258259
'cffi==1.16.0;python_version>="3.8"',
259-
"pycparser==2.21",
260-
260+
"pycparser==2.22",
261261
],
262262
# pip install -e .[pillow]
263263
# (An optional library for image-processing.)
264264
"pillow": [
265265
'Pillow==9.5.0;python_version<"3.8"',
266266
'Pillow==10.2.0;python_version>="3.8"',
267267
],
268+
# pip install -e .[pip-system-certs]
269+
# (If you see [SSL: CERTIFICATE_VERIFY_FAILED], then get this.)
270+
# (May help those with corporate self-signed certs on Windows.)
271+
"pip-system-certs": [
272+
'pip-system-certs==4.0;platform_system=="Windows"',
273+
],
268274
# pip install -e .[proxy]
269275
# Usage: proxy
270276
# (That starts a proxy server on "127.0.0.1:8899".)

0 commit comments

Comments
 (0)