Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6 python wrapper fix #8

Merged
merged 10 commits into from
Jun 10, 2022
474 changes: 5 additions & 469 deletions libraries/py/poetry.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions libraries/py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "switchboardpy"
version = "0.0.5"
version = "0.0.7"
description = "Switchboard V2 API"
repository = "https://github.com/switchboard-xyz/switchboard-v2/tree/main/libraries/py"
homepage = "https://docs.switchboard.xyz"
Expand All @@ -9,7 +9,7 @@ license = "MIT"

[tool.poetry.dependencies]
python = "^3.9"
anchorpy = {extras = ["cli"], version = "^0.9.1"}
anchorpy = "^0.9.2"
anyio = "3.4.0"
apischema = "0.16.6"
attrs = "21.2.0"
Expand Down Expand Up @@ -55,6 +55,7 @@ urllib3 = "1.26.7"
websockets = "10.1"
zstandard = ">=0.17.0"
typer = "^0.4.1"
pytest-xprocess = "0.18.1"

[tool.poetry.dev-dependencies]
pytest = "6.2.5"
Expand Down
6 changes: 4 additions & 2 deletions libraries/py/switchboardpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
AggregatorInitParams,
AggregatorOpenRoundParams,
AggregatorSaveResultParams,
AggregatorSetHistoryBufferParams
AggregatorSetHistoryBufferParams,
)
from switchboardpy.compiled import OracleJob
from switchboardpy.common import SBV2_DEVNET_PID, AccountParams, SwitchboardDecimal
Expand Down Expand Up @@ -49,5 +49,7 @@
"ProgramStateAccount",
"ProgramInitParams",
"VaultTransferParams",
"SwitchboardDecimal"
"SwitchboardDecimal",
"readRawVarint32",
"readDelimitedFrom"
]
Loading