Skip to content

Commit

Permalink
tagged test dependencies as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
eileen-kuehn committed Dec 11, 2020
1 parent c491f87 commit 7476fd6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Expand Up @@ -45,10 +45,10 @@ sphinxcontrib-contentui = { version = "^0.2.5", optional = true }
sphinx-click = { version = "^2.5.0", optional = true }
change-log = { version = "^0.2.0", optional = true }

pytest = ">= 4.3.0"
flake8 = "^3.8.4"
flake8-bugbear = "^20.11.1"
black = { version = "^20.8b1", markers = "implementation_name=='cpython'" }
pytest = { version = ">= 4.3.0", optional = true }
flake8 = { version = "^3.8.4", optional = true }
flake8-bugbear = { version = "^20.11.1", optional = true }
black = { version = "^20.8b1", markers = "implementation_name=='cpython'", optional = true }

[tool.poetry.extras]
doc = [
Expand Down

0 comments on commit 7476fd6

Please sign in to comment.