-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(fix) Added fix to avoid errors caused by the grpcio library inconsis…
…tencies
- Loading branch information
abel
committed
Oct 12, 2023
1 parent
e6d9b92
commit e083c42
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Import first api_implementation from protobuf to force the import of architecture specific dependencies | ||
# If this is not imported, importing later grpcio (required by AsyncClient) fails in Mac machines with M1 and M2 | ||
from google.protobuf.internal import api_implementation # noqa: F401 | ||
|
||
from .async_client import AsyncClient # noqa: F401 | ||
from .transaction import Transaction # noqa: F401 | ||
from .wallet import Address, PrivateKey, PublicKey # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "injective-py" | ||
version = "0.10.dev2" | ||
version = "0.10.dev3" | ||
description = "Injective Python SDK, with Exchange API Client" | ||
authors = ["Injective Labs <[email protected]>"] | ||
license = "Apache-2.0" | ||
|