This is an automated email from the ASF dual-hosted git repository.
dimuthuupe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-mft.git
The following commit(s) were added to refs/heads/master by this push:
new 5434571 grpcio issue
5434571 is described below
commit 543457177756aa57163617201d538aed5861f62d
Author: nandarshan <[email protected]>
AuthorDate: Wed Feb 21 09:33:03 2024 -0500
grpcio issue
---
python-cli/mft_cli/pyproject.toml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/python-cli/mft_cli/pyproject.toml
b/python-cli/mft_cli/pyproject.toml
index 0f43495..e3d68f1 100644
--- a/python-cli/mft_cli/pyproject.toml
+++ b/python-cli/mft_cli/pyproject.toml
@@ -39,12 +39,14 @@ python = "^3.10"
typer = {extras = ["all"], version = "^0.7.0"}
pick = {version= "2.2.0"}
grpcio= [
- {version="1.46.3", markers = "platform_machine != 'arm64'"},
+ {version="1.46.3", markers = "platform_machine != 'arm64'", python =
"<3.11"},
+ {version="1.60.0", markers = "platform_machine != 'arm64'", python =
">=3.11"},
{version="1.60.0", markers = "platform_machine == 'arm64'", python =
">=3.11"},
{version="1.47.0rc1", markers = "platform_machine == 'arm64'", python =
"<3.11"},
]
grpcio-tools = [
- {version="1.46.3", markers = "platform_machine != 'arm64'"},
+ {version="1.46.3", markers = "platform_machine != 'arm64'", python =
"<3.11"},
+ {version="1.60.0", markers = "platform_machine != 'arm64'", python =
">=3.11"},
{version="1.60.0", markers = "platform_machine == 'arm64'", python =
">=3.11"},
{version="1.47.0rc1", markers = "platform_machine == 'arm64'", python =
"<3.11"}
]