Limit version caps to applicable scenarios

Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
This commit is contained in:
Keith Battocchi 2024-03-06 14:52:27 -05:00 коммит произвёл Keith Battocchi
Родитель 475bbbf960
Коммит ed990ed2c2
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -49,9 +49,9 @@ tf = [
"keras < 2.4; python_version < '3.9'",
"tensorflow > 1.10, < 2.3; python_version < '3.9'",
# Version capped due to tensorflow incompatibility
"protobuf < 4",
"protobuf < 4; python_version < '3.9'",
# Version capped due to tensorflow incompatibility
"numpy < 1.24"
"numpy < 1.24; python_version < '3.9'"
]
plt = [
"graphviz",
@ -74,9 +74,9 @@ all = [
"keras < 2.4; python_version < '3.9'",
"tensorflow > 1.10, < 2.3; python_version < '3.9'",
# Version capped due to tensorflow incompatibility
"protobuf < 4",
"protobuf < 4; python_version < '3.9'",
# Version capped due to tensorflow incompatibility
"numpy < 1.24",
"numpy < 1.24; python_version < '3.9'",
"graphviz",
"matplotlib",
"dowhy < 0.12; python_version > '3.8'",