Loosen restrictions on dev dependencies

This commit is contained in:
Correl Roush 2020-09-16 23:13:05 -04:00
parent ef4f7fc6ef
commit fe4dbcd51c

View file

@ -11,13 +11,13 @@ tornado = "^6"
openapi-core = "^0.13.4"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
mypy = "^0.782"
hypothesis = "^5.35.3"
flake8 = "^3.8.3"
pytest = "^6.0.2"
pytest-flake8 = "^1.0.6"
pytest-mypy = "^0.7.0"
black = { version = "*", allow-prereleases = true }
mypy = "*"
hypothesis = "*"
flake8 = "*"
pytest = "*"
pytest-flake8 = "*"
pytest-mypy = "*"
[tool.pytest.ini_options]
addopts = "--flake8 --mypy"