pyproject.toml: fix invalid Python version restriction

Using environment markers in the version is not allowed
(https://github.com/python-poetry/poetry/issues/21).
This commit is contained in:
Jonas Witschel 2020-03-30 22:45:20 +02:00
parent 2a24096505
commit ef59293515

View file

@ -23,7 +23,7 @@ matrix-nio = { version = "^0.9.0", extras = [ "e2e" ] }
python-magic = "^0.4.15"
aiohttp = "^3.6.2"
requests = "^2.23.0"
typing = "^3.7.4; python_version < 3.5"
typing = { version = "^3.7.4", python = "<3.5" }
[build-system]
requires = ["poetry>=0.12"]