Skip to content

Commit ab79780

Browse files
Merge pull request #218 from valory-xyz/feat/bump-open-autonomy
Feat/bump open autonomy
2 parents df69d7e + bce95aa commit ab79780

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+791
-479
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ jobs:
2323
sudo apt-get autoremove
2424
sudo apt-get autoclean
2525
python -m pip install --upgrade pip
26-
pip install twine poetry==1.4.2
26+
pip install twine poetry==1.8.3
2727
poetry install
28-
poetry run pip install --upgrade setuptools
2928
poetry run autonomy packages sync --update-packages
3029
3130
- name: Build wheels and source tarball

.github/workflows/workflow.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest]
17-
python-version: ["3.10", "3.11"]
17+
python-version: ["3.10"]
1818
timeout-minutes: 30
1919
steps:
2020
- uses: actions/checkout@v2
@@ -29,10 +29,8 @@ jobs:
2929
sudo apt-get update --fix-missing
3030
sudo apt-get autoremove
3131
sudo apt-get autoclean
32-
pip install --user --upgrade setuptools
3332
sudo npm install -g markdown-spellcheck
34-
pip install tomte[tox,cli]==0.2.14
35-
pip install 'marshmallow<4.0.0'
33+
pip install tomte[tox,cli]==0.6.1
3634
- name: Security checks
3735
run: |
3836
tox -p -e bandit -e safety
@@ -54,7 +52,7 @@ jobs:
5452
strategy:
5553
matrix:
5654
os: [ubuntu-latest, macos-latest, windows-latest]
57-
python-version: ["3.10", "3.11"]
55+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
5856
timeout-minutes: 30
5957
steps:
6058
- uses: actions/checkout@v4
@@ -86,7 +84,7 @@ jobs:
8684
strategy:
8785
matrix:
8886
os: [ubuntu-latest]
89-
python-version: ["3.10", "3.11"]
87+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
9088
steps:
9189
- uses: actions/checkout@master
9290
- uses: actions/setup-python@v3
@@ -98,9 +96,8 @@ jobs:
9896
sudo apt-get autoremove
9997
sudo apt-get autoclean
10098
python -m pip install --upgrade pip
101-
pip install twine poetry==1.4.2
99+
pip install twine poetry==1.8.3
102100
poetry install
103-
poetry run pip install --upgrade setuptools
104101
poetry run autonomy packages sync --update-packages
105102
106103
- name: Build wheels and source tarball

mech_client/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
ValidationError,
5959
)
6060

61-
6261
__all__ = [
6362
# Version
6463
"__version__",

mech_client/cli/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@
2121

2222
from mech_client.cli.main import cli
2323

24-
2524
__all__ = ["cli"]

mech_client/cli/commands/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from mech_client.cli.commands.subscription_cmd import subscription
2828
from mech_client.cli.commands.tool_cmd import tool
2929

30-
3130
__all__ = [
3231
"setup",
3332
"request",

mech_client/cli/commands/setup_cmd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
from mech_client.services.setup_service import SetupService
2929
from mech_client.utils.errors.handlers import handle_cli_errors
3030

31-
3231
CURR_DIR = Path(__file__).resolve().parent.parent.parent
3332
CHAIN_TO_TEMPLATE = {
3433
"gnosis": CURR_DIR / "templates" / "mech_client_gnosis.json",

mech_client/cli/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
)
4040
from mech_client.utils.logger import setup_logger
4141

42-
4342
# Initialize logging before any commands run
4443
setup_logger()
4544

mech_client/cli/validators.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from mech_client.utils import validators as utils_validators
2828
from mech_client.utils.errors import ValidationError
2929

30-
3130
MECHX_CHAIN_CONFIGS = Path(__file__).parent.parent / "configs" / "mechs.json"
3231

3332

mech_client/domain/delivery/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from mech_client.domain.delivery.offchain_watcher import OffchainDeliveryWatcher
2525
from mech_client.domain.delivery.onchain_watcher import OnchainDeliveryWatcher
2626

27-
2827
__all__ = [
2928
"DeliveryWatcher",
3029
"OffchainDeliveryWatcher",

mech_client/domain/delivery/offchain_watcher.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
from mech_client.domain.delivery.base import DeliveryWatcher
3030
from mech_client.domain.delivery.constants import WAIT_SLEEP
3131

32-
3332
logger = logging.getLogger(__name__)
3433

3534
# Constants for offchain polling

0 commit comments

Comments
 (0)