Skip to content

Commit

Permalink
pyproject.toml: specify versions for all dep including extras
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Dec 20, 2020
1 parent 7181407 commit 3210bee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Expand Up @@ -55,14 +55,14 @@ include = [
[tool.poetry.dependencies]
python = "^3.7"
panflute = "^2"
pyyaml = "*"
numpy = "*"
"backports.cached-property" = {python = "<3.8", version = "*"}
pyyaml = "^5"
numpy = "^1"
"backports.cached-property" = {python = "<3.8", version = "^1"}

# extras
coloredlogs = {optional = true, version = "*"}
tabulate = {optional = true, version = "*"}
yamlloader = {optional = true, version = "*"}
coloredlogs = {optional = true, version = ">=14,<16"}
tabulate = {optional = true, version = "^0.8"}
yamlloader = {optional = true, version = "^0.5"}

# tests
coverage = {optional = true, version = "*"}
Expand Down

0 comments on commit 3210bee

Please sign in to comment.