Skip to content

Commit 5a59916

Browse files
committed
fix: Update coverage for Python 3.8 support
This requires changing the python requirement to disallow installing on Python 4, since coverage added that requirement. Without this change, poetry complains and fails dependency solving.
1 parent fd045ed commit 5a59916

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131

3232
[tool.poetry.dependencies]
33-
python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
33+
python = ">=2.7,<3.0.0 || >=3.4.0,<4"
3434

3535

3636
[tool.poetry.dev-dependencies]
@@ -40,6 +40,7 @@ flake8 = ">=3.6.0"
4040
mock = "^3.0.5"
4141
bumpversion = "^0.5.0"
4242
pytest-cov = "~2.8"
43+
coverage = ">=4.5.4"
4344
sphinx = ">=1.8.4"
4445
sphinx-rtd-theme = "^0.4.0"
4546

0 commit comments

Comments
 (0)