install: fixed issue identifying python versions to install dataclasses for, using ~ should account for any version up to 3.7 properly

This commit is contained in:
Blake Harnden 2020-07-28 16:34:05 -07:00
parent 0d2dd70727
commit 9e3e0e0326

View file

@ -10,7 +10,7 @@ include = ["core/gui/data/**/*", "core/configservices/*/templates"]
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = { version = "*", python = "3.6" }
dataclasses = { version = "*", python = "~3.6" }
fabric = "*"
grpcio = "1.27.2"
invoke = "*"