Skip to content

Commit 5f67fb8

Browse files
committed
Refresh Python dependencies
1 parent 1bcda8f commit 5f67fb8

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ regex>=2023.12.25
55
pymdown-extensions>=10.7.1
66
pipdeptree>=2.16.1
77
python-dateutil>=2.8.2
8-
Markdown==3.5.2
8+
Markdown==3.6
99
markdown2==2.4.13
1010
MarkupSafe==2.1.5
1111
Jinja2==3.1.3

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
pip>=24.0
2-
packaging>=23.2
2+
packaging>=24.0
33
setuptools>=68.0.0;python_version<"3.8"
4-
setuptools>=69.1.1;python_version>="3.8"
5-
wheel>=0.42.0
4+
setuptools>=69.2.0;python_version>="3.8"
5+
wheel>=0.42.0;python_version<"3.8"
6+
wheel>=0.43.0;python_version>="3.8"
67
attrs>=23.2.0
78
certifi>=2024.2.2
89
filelock>=3.12.2;python_version<"3.8"
@@ -44,7 +45,8 @@ pytest-html==2.0.1
4445
pytest-metadata==3.0.0;python_version<"3.8"
4546
pytest-metadata==3.1.1;python_version>="3.8"
4647
pytest-ordering==0.6
47-
pytest-rerunfailures==13.0
48+
pytest-rerunfailures==13.0;python_version<"3.8"
49+
pytest-rerunfailures==14.0;python_version>="3.8"
4850
pytest-xdist==3.5.0
4951
parameterized==0.9.0
5052
sbvirtualdisplay==1.3.0

setup.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,11 @@
147147
python_requires=">=3.7",
148148
install_requires=[
149149
'pip>=24.0',
150-
'packaging>=23.2',
150+
'packaging>=24.0',
151151
'setuptools>=68.0.0;python_version<"3.8"',
152-
'setuptools>=69.1.1;python_version>="3.8"',
153-
'wheel>=0.42.0',
152+
'setuptools>=69.2.0;python_version>="3.8"',
153+
'wheel>=0.42.0;python_version<"3.8"',
154+
'wheel>=0.43.0;python_version>="3.8"',
154155
'attrs>=23.2.0',
155156
"certifi>=2024.2.2",
156157
'filelock>=3.12.2;python_version<"3.8"',
@@ -192,7 +193,8 @@
192193
'pytest-metadata==3.0.0;python_version<"3.8"',
193194
'pytest-metadata==3.1.1;python_version>="3.8"',
194195
"pytest-ordering==0.6",
195-
'pytest-rerunfailures==13.0',
196+
'pytest-rerunfailures==13.0;python_version<"3.8"',
197+
'pytest-rerunfailures==14.0;python_version>="3.8"',
196198
'pytest-xdist==3.5.0',
197199
'parameterized==0.9.0',
198200
"sbvirtualdisplay==1.3.0",
@@ -217,9 +219,9 @@
217219
# Usage: pytest --alluredir=allure_results
218220
# Serve: allure serve allure_results
219221
"allure": [
220-
'allure-pytest==2.13.2',
221-
'allure-python-commons==2.13.2',
222-
'allure-behave==2.13.2',
222+
'allure-pytest==2.13.3',
223+
'allure-python-commons==2.13.3',
224+
'allure-behave==2.13.3',
223225
],
224226
# pip install -e .[coverage]
225227
# Usage: coverage run -m pytest; coverage html; coverage report

0 commit comments

Comments
 (0)