Skip to content

Commit 1b13a02

Browse files
committed
pyproject.toml: Add test and doc dependencies for Python 2 and 3
1 parent 0758f28 commit 1b13a02

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,30 @@ license = "MIT"
99
python = "~2.7 || ^3.5"
1010

1111
[tool.poetry.dev-dependencies]
12+
black = {version="==19.10b0", python="^3.6"}
13+
docutils = "*"
14+
flake8 = "*"
15+
isort = "*"
16+
pytest = [
17+
{version="<4.7.0", python="<3"},
18+
{version="*", python=">=3"}
19+
]
20+
pathlib2 = {version="<2.3.5", python="<3"} # Untangle pytest peer-dependency
21+
sphinx = [
22+
{version="<2", python="<3"},
23+
{version="*", python=">=3"}
24+
]
25+
twine = "*"
26+
codecov = "*"
27+
coverage = "*"
28+
pytest-cov = [
29+
{version="<2.10.0", python="<3"},
30+
{version="*", python=">=3"}
31+
]
32+
pytest-mock = [
33+
{version="<3.0.0", python="<3"},
34+
{version="*", python=">=3"}
35+
]
1236

1337
[build-system]
1438
requires = ["poetry>=0.12"]

0 commit comments

Comments
 (0)