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 72ecfd9 Supporting python version specific grpc io installation in M2
macs
72ecfd9 is described below
commit 72ecfd9cc0ea32a27561b54c2863c074f89339e7
Author: Dimuthu Wannipurage <[email protected]>
AuthorDate: Wed Feb 21 08:31:00 2024 -0500
Supporting python version specific grpc io installation in M2 macs
---
python-cli/README.md | 2 +-
python-cli/mft_cli/pyproject.toml | 14 +++++++++++---
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/python-cli/README.md b/python-cli/README.md
index 539309d..43ece75 100644
--- a/python-cli/README.md
+++ b/python-cli/README.md
@@ -39,7 +39,7 @@ poetry install
mft --help
```
-To publish the ditribution to pypi
+To publish the distribution to pypi
```
poetry publish --build
```
\ No newline at end of file
diff --git a/python-cli/mft_cli/pyproject.toml
b/python-cli/mft_cli/pyproject.toml
index 924f904..0f43495 100644
--- a/python-cli/mft_cli/pyproject.toml
+++ b/python-cli/mft_cli/pyproject.toml
@@ -18,7 +18,7 @@
[tool.poetry]
name = "airavata-mft-cli"
-version = "0.1.18"
+version = "0.1.22"
description = "Command Line Client for Apache Airavata MFT data transfer
software"
authors = [
"Dimuthu Wannipurage <[email protected]>",
@@ -38,8 +38,16 @@ mft = "airavata_mft_cli.main:app"
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.47.0rc1", markers = "platform_machine == 'arm64'"}]
-grpcio-tools = [{version="1.46.3", markers = "platform_machine !=
'arm64'"},{version="1.47.0rc1", markers = "platform_machine == 'arm64'"}]
+grpcio= [
+ {version="1.46.3", markers = "platform_machine != 'arm64'"},
+ {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.60.0", markers = "platform_machine == 'arm64'", python =
">=3.11"},
+ {version="1.47.0rc1", markers = "platform_machine == 'arm64'", python =
"<3.11"}
+]
airavata-mft-sdk = "0.0.1a34"
pandas = "^2.0.3"