From ba8e89f5f2773953e82a4532296b79c00eca646a Mon Sep 17 00:00:00 2001 From: FerranMarin Date: Mon, 30 May 2022 00:17:49 +0100 Subject: [PATCH] Fix unclaimed calculations --- axie-scholar-utilities/source/axie/__init__.py | 2 +- axie-scholar-utilities/source/axie_scholar_cli.py | 2 +- axie-scholar-utilities/source/poetry.lock | 8 ++++---- axie-scholar-utilities/source/pyproject.toml | 4 ++-- axie-scholar-utilities/source/trezor/__init__.py | 2 +- axie-scholar-utilities/source/trezor_axie_scholar_cli.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/axie-scholar-utilities/source/axie/__init__.py b/axie-scholar-utilities/source/axie/__init__.py index 3201c8d..42441b8 100644 --- a/axie-scholar-utilities/source/axie/__init__.py +++ b/axie-scholar-utilities/source/axie/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.2.0' +__version__ = '3.2.1' __all__ = [ 'AxiePaymentsManager', 'AxieClaimsManager', diff --git a/axie-scholar-utilities/source/axie_scholar_cli.py b/axie-scholar-utilities/source/axie_scholar_cli.py index 17858f8..b5aabe0 100644 --- a/axie-scholar-utilities/source/axie_scholar_cli.py +++ b/axie-scholar-utilities/source/axie_scholar_cli.py @@ -238,7 +238,7 @@ def check_file(file): def run_cli(): """ Wrapper function for testing purposes""" - args = docopt(__doc__, version='Axie Scholar Payments CLI v3.2.0') + args = docopt(__doc__, version='Axie Scholar Payments CLI v3.2.1') if args['payout']: logging.info("I shall help you pay!") payments_file_path = args[''] diff --git a/axie-scholar-utilities/source/poetry.lock b/axie-scholar-utilities/source/poetry.lock index ad8ee8f..223340f 100644 --- a/axie-scholar-utilities/source/poetry.lock +++ b/axie-scholar-utilities/source/poetry.lock @@ -61,7 +61,7 @@ tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (> [[package]] name = "axie-utils" -version = "2.1.0" +version = "2.1.1" description = "Library that provides the functionality you need to build your own axie Infinity python tools" category = "main" optional = false @@ -823,7 +823,7 @@ multidict = ">=4.0" [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "64132bf93f6e4ac9362e03a4cd199fd4fc0851e69df83f8b7a4229f78585119d" +content-hash = "f57c134e330d47907ea71979ee4868b861ad60dbbed9e19478740ed5e5c42825" [metadata.files] aiohttp = [ @@ -917,8 +917,8 @@ attrs = [ {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, ] axie-utils = [ - {file = "axie-utils-2.1.0.tar.gz", hash = "sha256:15aa81b166865078e1a784973e67e5c97264ed2d52f33d5daca117e9ed27c793"}, - {file = "axie_utils-2.1.0-py3-none-any.whl", hash = "sha256:1e6848b3e34772e5013c8312e74e94b93a6beea341d67c8a8de78394cad694cd"}, + {file = "axie-utils-2.1.1.tar.gz", hash = "sha256:0f3b4f2f042d4616270955df87b95e126b03ba4341ebe1f74733b7119ca1236d"}, + {file = "axie_utils-2.1.1-py3-none-any.whl", hash = "sha256:c89f72a0c766063cfe0a163011fbe85ab507189ccacbdced6c1b675408150b5e"}, ] base58 = [ {file = "base58-2.1.1-py3-none-any.whl", hash = "sha256:11a36f4d3ce51dfc1043f3218591ac4eb1ceb172919cebe05b52a5bcc8d245c2"}, diff --git a/axie-scholar-utilities/source/pyproject.toml b/axie-scholar-utilities/source/pyproject.toml index 001ff79..b8807dd 100644 --- a/axie-scholar-utilities/source/pyproject.toml +++ b/axie-scholar-utilities/source/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Axie Scholar Utilities" -version = "3.2.0" +version = "3.2.1" description = "Package to automate activites related to manage Axie Infinity Scholars. Specially aimed at managers with large scholar roasters." authors = ["Ferran Marin "] license = "GPL-3.0" @@ -11,7 +11,7 @@ docopt = "^0.6.2" jsonschema = "^3.2.0" qrcode = "^7.3.1" Pillow = "^9.0.1" -axie-utils = "^2.1.0" +axie-utils = "^2.1.1" [tool.poetry.dev-dependencies] mock = "^4.0.3" diff --git a/axie-scholar-utilities/source/trezor/__init__.py b/axie-scholar-utilities/source/trezor/__init__.py index 804882d..725a3e5 100644 --- a/axie-scholar-utilities/source/trezor/__init__.py +++ b/axie-scholar-utilities/source/trezor/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.2.0' +__version__ = '3.2.1' __all__ = [ 'TrezorAccountsSetup', 'TrezorAxiePaymentsManager', diff --git a/axie-scholar-utilities/source/trezor_axie_scholar_cli.py b/axie-scholar-utilities/source/trezor_axie_scholar_cli.py index 08d8216..4a785c0 100644 --- a/axie-scholar-utilities/source/trezor_axie_scholar_cli.py +++ b/axie-scholar-utilities/source/trezor_axie_scholar_cli.py @@ -175,7 +175,7 @@ def check_file(file): def run_cli(): """ Wrapper function for testing purposes""" - args = docopt(__doc__, version='Trezor Axie Scholar Payments CLI v3.2.0') + args = docopt(__doc__, version='Trezor Axie Scholar Payments CLI v3.2.1') if args['payout']: logging.info("I shall help you pay!") payments_file_path = args['']