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:
parent
0d2dd70727
commit
9e3e0e0326
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ include = ["core/gui/data/**/*", "core/configservices/*/templates"]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.6"
|
python = "^3.6"
|
||||||
dataclasses = { version = "*", python = "3.6" }
|
dataclasses = { version = "*", python = "~3.6" }
|
||||||
fabric = "*"
|
fabric = "*"
|
||||||
grpcio = "1.27.2"
|
grpcio = "1.27.2"
|
||||||
invoke = "*"
|
invoke = "*"
|
||||||
|
|
Loading…
Add table
Reference in a new issue