From 99ed259acfd9bdd2a34124e34a8254c71ceaeb70 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Tue, 31 Oct 2023 10:49:11 +0200 Subject: [PATCH 1/2] fix py-wallet version --- pyproject.toml | 26 +++++++++++++------------- requirements.txt | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b4476a0e..dbf59f1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "multiversx-sdk-cli" -version = "8.1.2" +version = "8.1.3" authors = [ { name="MultiversX" }, ] @@ -18,18 +18,18 @@ classifiers = [ "Operating System :: OS Independent", "Intended Audience :: Developers" ] -dependencies = [ - "toml>=0.10.2", - "requests", - "prettytable", - "ledgercomm[hid]", - "semver", - "requests-cache", - "rich==13.3.4", - "multiversx-sdk-network-providers>=0.11.0", - "multiversx-sdk-wallet>=0.7.0", - "multiversx-sdk-core>=0.5.0" -] + +[dependencies] +toml = ">=0.10.2" +requests = "*" +prettytable = "*" +ledgercomm = { version = "*", extras = ["hid"] } +semver = "*" +requests-cache = "*" +rich = "13.3.4" +multiversx-sdk-network-providers = ">=0.11.0" +multiversx-sdk-wallet = ">=0.7.0, <0.8.0" +multiversx-sdk-core = ">=0.5.0" [tool.hatch.build] include = [ diff --git a/requirements.txt b/requirements.txt index d9574c6a..1038a8ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,4 +11,4 @@ rich==13.3.4 multiversx-sdk-core==0.6.0 multiversx-sdk-network-providers>=0.11.0 -multiversx-sdk-wallet>=0.7.0 +multiversx-sdk-wallet>=0.7.0, < 0.8.0 From ce00d1ede5da796a63a62984c31fe270e5d92345 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Tue, 31 Oct 2023 11:16:56 +0200 Subject: [PATCH 2/2] fix pyproject.toml dependencies --- pyproject.toml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dbf59f1d..2ef3febd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,17 +19,18 @@ classifiers = [ "Intended Audience :: Developers" ] -[dependencies] -toml = ">=0.10.2" -requests = "*" -prettytable = "*" -ledgercomm = { version = "*", extras = ["hid"] } -semver = "*" -requests-cache = "*" -rich = "13.3.4" -multiversx-sdk-network-providers = ">=0.11.0" -multiversx-sdk-wallet = ">=0.7.0, <0.8.0" -multiversx-sdk-core = ">=0.5.0" +dependencies = [ + "toml>=0.10.2", + "requests", + "prettytable", + "ledgercomm[hid]", + "semver", + "requests-cache", + "rich==13.3.4", + "multiversx-sdk-network-providers>=0.11.0", + "multiversx-sdk-wallet>=0.7.0, <0.8.0", + "multiversx-sdk-core>=0.5.0" +] [tool.hatch.build] include = [