Skip to content

Commit

Permalink
Merge pull request #360 from multiversx/hotfix-constraints-11-08
Browse files Browse the repository at this point in the history
Adjust constraints of dependencies (sdk-network-providers)
  • Loading branch information
andreibancioiu authored Nov 8, 2023
2 parents 0b39f3e + 8d9affe commit 9e6f330
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

0 comments on commit 9e6f330

Please sign in to comment.