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

Adjust constraints of dependencies (sdk-network-providers) #360

Merged
merged 3 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/tests/shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ PROXY="${PROXY:-http://localhost:7950}"
CHAIN_ID="${CHAIN_ID:-localnet}"
TestUser=./testdata/testUser.pem
TestUser2=./testdata/testUser2.pem
RUST_VERSION="nightly-2023-04-24"
RUST_VERSION="nightly-2023-05-26"

cleanSandbox() {
rm -rf ${SANDBOX}
Expand Down
6 changes: 3 additions & 3 deletions multiversx_sdk_cli/tests/test_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ def test_sync_nonce():
proxy = ProxyNetworkProvider("https://devnet-api.multiversx.com")
account.sync_nonce(proxy)

assert account.nonce >= 11480
assert account.nonce >= 42


def test_query_contract():
result = main(
[
"contract",
"query",
"erd1qqqqqqqqqqqqqpgquykqja5c4v33zdmnwglj3jphqwrelzdn396qlc9g33",
"erd1qqqqqqqqqqqqqpgqpuz9r56ylk39x45cgqmaw2w8hfn47ft3d8ssavktr5",
"--function",
"getSum",
"--proxy",
Expand All @@ -57,7 +57,7 @@ def test_get_transaction():
"--proxy",
"https://devnet-api.multiversx.com",
"--hash",
"cbe2026b8d9c3ee75f2846ea8e0b646b19e6fca754e43edb4113757fc3350952",
"9e6ca966b18dc0317ff3be9b53be183ddb068a163769d286b2c1b1dff3ac00e5",
]
)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "multiversx-sdk-cli"
version = "8.1.5"
version = "8.1.6"
authors = [
{ name="MultiversX" },
]
Expand All @@ -27,7 +27,7 @@ dependencies = [
"semver",
"requests-cache",
"rich==13.3.4",
"multiversx-sdk-network-providers>=0.11.0",
"multiversx-sdk-network-providers>=0.11.0, <0.12.0",
"multiversx-sdk-wallet>=0.7.0, <0.8.0",
"multiversx-sdk-core==0.6.0"
]
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ requests-cache
rich==13.3.4

multiversx-sdk-core==0.6.0
multiversx-sdk-network-providers>=0.11.0
multiversx-sdk-wallet>=0.7.0, < 0.8.0
multiversx-sdk-network-providers>=0.11.0, <0.12.0
multiversx-sdk-wallet>=0.7.0, <0.8.0