Skip to content

Commit c59b280

Browse files
committed
Refresh Python dependencies
1 parent 6fda595 commit c59b280

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ platformdirs>=2.4.0;python_version<"3.7"
2121
platformdirs>=3.0.0;python_version>="3.7"
2222
pyparsing>=3.0.7;python_version<"3.7"
2323
zipp==3.6.0;python_version<"3.7"
24-
zipp>=3.14.0;python_version>="3.7"
24+
zipp>=3.15.0;python_version>="3.7"
25+
more-itertools==8.14.0;python_version<"3.7"
26+
more-itertools>=9.1.0;python_version>="3.7"
2527
six==1.16.0
2628
idna==3.4
2729
chardet==4.0.0;python_version<"3.7"
@@ -33,7 +35,7 @@ urllib3==1.26.14;python_version>="3.7"
3335
requests==2.27.1;python_version<"3.7"
3436
requests==2.28.2;python_version>="3.7"
3537
requests-toolbelt==0.10.1
36-
nose==1.3.7
38+
pynose==1.4.1
3739
sniffio==1.3.0;python_version>="3.7"
3840
h11==0.14.0;python_version>="3.7"
3941
outcome==1.2.0;python_version>="3.7"
@@ -45,8 +47,6 @@ wsproto==1.2.0;python_version>="3.7"
4547
selenium==3.141.0;python_version<"3.7"
4648
selenium==4.8.2;python_version>="3.7"
4749
msedge-selenium-tools==3.141.3;python_version<"3.7"
48-
more-itertools==8.14.0;python_version<"3.7"
49-
more-itertools==9.0.0;python_version>="3.7"
5050
cssselect==1.1.0;python_version<"3.7"
5151
cssselect==1.2.0;python_version>="3.7"
5252
sortedcontainers==2.4.0
@@ -101,7 +101,7 @@ rich==13.3.1;python_version>="3.7"
101101
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
102102

103103
coverage==6.2;python_version<"3.7"
104-
coverage==7.2.0;python_version>="3.7"
104+
coverage==7.2.1;python_version>="3.7"
105105
pytest-cov==4.0.0
106106
flake8==5.0.4;python_version<"3.9"
107107
flake8==6.0.0;python_version>="3.9"

setup.py

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@
145145
'platformdirs>=3.0.0;python_version>="3.7"',
146146
'pyparsing>=3.0.7;python_version<"3.7"',
147147
'zipp==3.6.0;python_version<"3.7"',
148-
'zipp>=3.14.0;python_version>="3.7"',
148+
'zipp>=3.15.0;python_version>="3.7"',
149+
'more-itertools==8.14.0;python_version<"3.7"',
150+
'more-itertools>=9.1.0;python_version>="3.7"',
149151
"six==1.16.0",
150152
"idna==3.4",
151153
'chardet==4.0.0;python_version<"3.7"',
@@ -157,7 +159,7 @@
157159
'requests==2.27.1;python_version<"3.7"',
158160
'requests==2.28.2;python_version>="3.7"',
159161
'requests-toolbelt==0.10.1',
160-
"nose==1.3.7",
162+
"pynose==1.4.1",
161163
'sniffio==1.3.0;python_version>="3.7"',
162164
'h11==0.14.0;python_version>="3.7"',
163165
'outcome==1.2.0;python_version>="3.7"',
@@ -169,8 +171,6 @@
169171
'selenium==3.141.0;python_version<"3.7"',
170172
'selenium==4.8.2;python_version>="3.7"',
171173
'msedge-selenium-tools==3.141.3;python_version<"3.7"',
172-
'more-itertools==8.14.0;python_version<"3.7"',
173-
'more-itertools==9.0.0;python_version>="3.7"',
174174
'cssselect==1.1.0;python_version<"3.7"',
175175
'cssselect==1.2.0;python_version>="3.7"',
176176
"sortedcontainers==2.4.0",
@@ -222,11 +222,22 @@
222222
'rich==13.3.1;python_version>="3.7"',
223223
],
224224
extras_require={
225+
# pip install -e .[allure]
226+
# Usage: pytest --alluredir=allure_results
227+
# Serve: allure serve allure_results
228+
"allure": [
229+
'allure-pytest==2.9.45;python_version<"3.7"',
230+
'allure-pytest==2.12.0;python_version>="3.7"',
231+
'allure-python-commons==2.9.45;python_version<"3.7"',
232+
'allure-python-commons==2.12.0;python_version>="3.7"',
233+
'allure-behave==2.9.45;python_version<"3.7"',
234+
'allure-behave==2.12.0;python_version>="3.7"',
235+
],
225236
# pip install -e .[coverage]
226237
# Usage: coverage run -m pytest; coverage html; coverage report
227238
"coverage": [
228239
'coverage==6.2;python_version<"3.7"',
229-
'coverage==7.2.0;python_version>="3.7"',
240+
'coverage==7.2.1;python_version>="3.7"',
230241
"pytest-cov==4.0.0",
231242
],
232243
# pip install -e .[flake8]

0 commit comments

Comments
 (0)