Skip to content

Commit 4eb176e

Browse files
committed
Refresh Python dependencies
1 parent 1757793 commit 4eb176e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ certifi>=2022.12.7
1919
filelock>=3.4.1;python_version<"3.7"
2020
filelock>=3.12.0;python_version>="3.7"
2121
platformdirs>=2.4.0;python_version<"3.7"
22-
platformdirs>=3.4.0;python_version>="3.7"
22+
platformdirs>=3.5.0;python_version>="3.7"
2323
pyparsing>=3.0.7;python_version<"3.7"
2424
pyparsing>=3.0.9;python_version>="3.7"
2525
zipp==3.6.0;python_version<"3.7"
@@ -99,13 +99,13 @@ commonmark==0.9.1;python_version<"3.7"
9999
markdown-it-py==2.2.0;python_version>="3.7"
100100
mdurl==0.1.2;python_version>="3.7"
101101
rich==12.6.0;python_version<"3.7"
102-
rich==13.3.4;python_version>="3.7"
102+
rich==13.3.5;python_version>="3.7"
103103

104104
# --- Testing Requirements --- #
105105
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
106106

107107
coverage==6.2;python_version<"3.7"
108-
coverage==7.2.3;python_version>="3.7"
108+
coverage==7.2.4;python_version>="3.7"
109109
pytest-cov==4.0.0
110110
flake8==5.0.4;python_version<"3.9"
111111
flake8==6.0.0;python_version>="3.9"

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
'filelock>=3.4.1;python_version<"3.7"',
144144
'filelock>=3.12.0;python_version>="3.7"',
145145
'platformdirs>=2.4.0;python_version<"3.7"',
146-
'platformdirs>=3.4.0;python_version>="3.7"',
146+
'platformdirs>=3.5.0;python_version>="3.7"',
147147
'pyparsing>=3.0.7;python_version<"3.7"',
148148
'pyparsing>=3.0.9;python_version>="3.7"',
149149
'zipp==3.6.0;python_version<"3.7"',
@@ -223,25 +223,25 @@
223223
'markdown-it-py==2.2.0;python_version>="3.7"', # For new "rich"
224224
'mdurl==0.1.2;python_version>="3.7"', # For new "rich"
225225
'rich==12.6.0;python_version<"3.7"',
226-
'rich==13.3.4;python_version>="3.7"',
226+
'rich==13.3.5;python_version>="3.7"',
227227
],
228228
extras_require={
229229
# pip install -e .[allure]
230230
# Usage: pytest --alluredir=allure_results
231231
# Serve: allure serve allure_results
232232
"allure": [
233233
'allure-pytest==2.9.45;python_version<"3.7"',
234-
'allure-pytest==2.13.1;python_version>="3.7"',
234+
'allure-pytest==2.13.2;python_version>="3.7"',
235235
'allure-python-commons==2.9.45;python_version<"3.7"',
236-
'allure-python-commons==2.13.1;python_version>="3.7"',
236+
'allure-python-commons==2.13.2;python_version>="3.7"',
237237
'allure-behave==2.9.45;python_version<"3.7"',
238-
'allure-behave==2.13.1;python_version>="3.7"',
238+
'allure-behave==2.13.2;python_version>="3.7"',
239239
],
240240
# pip install -e .[coverage]
241241
# Usage: coverage run -m pytest; coverage html; coverage report
242242
"coverage": [
243243
'coverage==6.2;python_version<"3.7"',
244-
'coverage==7.2.3;python_version>="3.7"',
244+
'coverage==7.2.4;python_version>="3.7"',
245245
"pytest-cov==4.0.0",
246246
],
247247
# pip install -e .[flake8]

0 commit comments

Comments
 (0)