Skip to content

Commit 8ac09f3

Browse files
committed
Poetry: Python Version constrained packages
1 parent de92316 commit 8ac09f3

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

poetry.lock

Lines changed: 13 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,19 @@ doc8 = "*"
2222
docutils = "*"
2323
flake8 = "*"
2424
isort = "*"
25-
pillow = "*"
26-
pytest = "*"
25+
pillow = [
26+
{version="<7", python="<3"},
27+
{version="*", python=">=3"}
28+
]
29+
pytest = [
30+
{version="<4.7.0", python="<3"},
31+
{version="*", python=">=3"}
32+
]
2733
pytest-rerunfailures = "*"
28-
sphinx = "*"
34+
sphinx = [
35+
{version="<2", python="<3"},
36+
{version="*", python=">=3"}
37+
]
2938
sphinx-issues = "*"
3039
twine = "*"
3140
codecov = "*"

0 commit comments

Comments
 (0)