File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,8 @@ rich==13.5.2;python_version>="3.7"
8989# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
9090
9191coverage == 6.2 ;python_version < "3.7"
92- coverage == 7.2.7 ;python_version >= "3.7"
92+ coverage == 7.2.7 ;python_version >= "3.7" and python_version<"3.8"
93+ coverage == 7.3.0 ;python_version >= "3.8"
9394pytest-cov == 4.0.0 ;python_version < "3.7"
9495pytest-cov == 4.1.0 ;python_version >= "3.7"
9596flake8 == 5.0.4 ;python_version < "3.9"
Original file line number Diff line number Diff line change 235235 # Usage: coverage run -m pytest; coverage html; coverage report
236236 "coverage" : [
237237 'coverage==6.2;python_version<"3.7"' ,
238- 'coverage==7.2.7;python_version>="3.7"' ,
238+ 'coverage==7.2.7;python_version>="3.7" and python_version<"3.8"' ,
239+ 'coverage==7.3.0;python_version>="3.8"' ,
239240 'pytest-cov==4.0.0;python_version<"3.7"' ,
240241 'pytest-cov==4.1.0;python_version>="3.7"' ,
241242 ],
You can’t perform that action at this time.
0 commit comments