Skip to content

Commit

Permalink
Refresh Python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmintz committed Mar 14, 2024
1 parent 1bcda8f commit 5f67fb8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion mkdocs_build/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ regex>=2023.12.25
pymdown-extensions>=10.7.1
pipdeptree>=2.16.1
python-dateutil>=2.8.2
Markdown==3.5.2
Markdown==3.6
markdown2==2.4.13
MarkupSafe==2.1.5
Jinja2==3.1.3
Expand Down
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
pip>=24.0
packaging>=23.2
packaging>=24.0
setuptools>=68.0.0;python_version<"3.8"
setuptools>=69.1.1;python_version>="3.8"
wheel>=0.42.0
setuptools>=69.2.0;python_version>="3.8"
wheel>=0.42.0;python_version<"3.8"
wheel>=0.43.0;python_version>="3.8"
attrs>=23.2.0
certifi>=2024.2.2
filelock>=3.12.2;python_version<"3.8"
Expand Down Expand Up @@ -44,7 +45,8 @@ pytest-html==2.0.1
pytest-metadata==3.0.0;python_version<"3.8"
pytest-metadata==3.1.1;python_version>="3.8"
pytest-ordering==0.6
pytest-rerunfailures==13.0
pytest-rerunfailures==13.0;python_version<"3.8"
pytest-rerunfailures==14.0;python_version>="3.8"
pytest-xdist==3.5.0
parameterized==0.9.0
sbvirtualdisplay==1.3.0
Expand Down
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,11 @@
python_requires=">=3.7",
install_requires=[
'pip>=24.0',
'packaging>=23.2',
'packaging>=24.0',
'setuptools>=68.0.0;python_version<"3.8"',
'setuptools>=69.1.1;python_version>="3.8"',
'wheel>=0.42.0',
'setuptools>=69.2.0;python_version>="3.8"',
'wheel>=0.42.0;python_version<"3.8"',
'wheel>=0.43.0;python_version>="3.8"',
'attrs>=23.2.0',
"certifi>=2024.2.2",
'filelock>=3.12.2;python_version<"3.8"',
Expand Down Expand Up @@ -192,7 +193,8 @@
'pytest-metadata==3.0.0;python_version<"3.8"',
'pytest-metadata==3.1.1;python_version>="3.8"',
"pytest-ordering==0.6",
'pytest-rerunfailures==13.0',
'pytest-rerunfailures==13.0;python_version<"3.8"',
'pytest-rerunfailures==14.0;python_version>="3.8"',
'pytest-xdist==3.5.0',
'parameterized==0.9.0',
"sbvirtualdisplay==1.3.0",
Expand All @@ -217,9 +219,9 @@
# Usage: pytest --alluredir=allure_results
# Serve: allure serve allure_results
"allure": [
'allure-pytest==2.13.2',
'allure-python-commons==2.13.2',
'allure-behave==2.13.2',
'allure-pytest==2.13.3',
'allure-python-commons==2.13.3',
'allure-behave==2.13.3',
],
# pip install -e .[coverage]
# Usage: coverage run -m pytest; coverage html; coverage report
Expand Down

0 comments on commit 5f67fb8

Please sign in to comment.