Skip to content
Open
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
13 changes: 13 additions & 0 deletions .github/workflows/main_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,19 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version: "1.17.7"
- if: matrix.os == 'ubuntu-latest'
name: Free Disk Space check
run: df -h
- if: matrix.os == 'ubuntu-latest'
name: Free Disk Space
uses: endersonmenezes/free-disk-space@v3
with:
remove_android: true
rm_cmd: "rm"
testing: true
- if: matrix.os == 'ubuntu-latest'
name: Free Disk Space check post cleanup
run: df -h
- if: matrix.os == 'ubuntu-latest'
name: Install dependencies (ubuntu-latest)
run: |
Expand Down
10 changes: 5 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name = "pypi"
aiohttp = "<4.0.0,>=3.8.5"
docker = "==7.1.0"
Flask = "==2.0.2"
open-aea = {version = "==2.0.6", extras = ["all"]}
open-aea-ledger-ethereum = "==2.0.6"
open-aea-ledger-ethereum-hwi = "==2.0.6"
open-aea-cli-ipfs = "==2.0.6"
open-aea = {version = "==2.0.7", extras = ["all"]}
open-aea-ledger-ethereum = "==2.0.7"
open-aea-ledger-ethereum-hwi = "==2.0.7"
open-aea-cli-ipfs = "==2.0.7"
ipfshttpclient = "==0.8.0a2"
multiaddr = "==0.0.9"
Werkzeug= "==2.0.3"
Expand All @@ -32,7 +32,7 @@ typing_extensions = "<=4.13.2,>=3.10.0.2"
hexbytes = "*"
packaging = "*"
pytest-asyncio = "*"
open-aea-ledger-cosmos = "==2.0.6"
open-aea-ledger-cosmos = "==2.0.7"
# we pin this as the range specified in open-aea-ledger-cosmos is wide
open-aea-cosmpy = "==0.6.7"
grpcio = "==1.53.0"
Expand Down
2 changes: 1 addition & 1 deletion autonomy/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@
ACN_IMAGE_NAME = os.environ.get("ACN_IMAGE_NAME", "valory/open-acn-node")
DEFAULT_DOCKER_IMAGE_AUTHOR = "valory"
OAR_IMAGE = "{image_author}/oar-{agent}:{version}"
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeic7qnx3fektetwxxdqt34f5wpwtvkpqpqh233hp3w4hdxjxlx5y7m"
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeic2ahlsu35bz3fiqhl6wbc76lqo7s4kliicywhap2nurip5iahxry"
OLAS_DOCS_URL = "https://stack.olas.network"
6 changes: 3 additions & 3 deletions deployments/Dockerfiles/autonomy-user/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
open-autonomy[all]==0.21.5
open-aea[all]==2.0.6
open-aea-cli-ipfs==2.0.6
open-aea-ledger-ethereum==2.0.6
open-aea[all]==2.0.7
open-aea-cli-ipfs==2.0.7
open-aea-ledger-ethereum==2.0.7
protobuf>=4.21.6,<5.0.0
2 changes: 1 addition & 1 deletion deployments/Dockerfiles/autonomy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG AEA_VERSION=2.0.6
ARG AEA_VERSION=2.0.7

FROM valory/open-aea-user:${AEA_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion deployments/Dockerfiles/development/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG AEA_VERSION=2.0.6
ARG AEA_VERSION=2.0.7

FROM valory/open-aea-user:${AEA_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced_reference/commands/autonomy_build-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID]
* Include extra python packages:

```bash
autonomy build-image ... -e open-aea-ledger-flashbots==2.0.6
autonomy build-image ... -e open-aea-ledger-flashbots==2.0.7
```

This will tag the image as `<author>/oar-<agent_package>:<version>`.
4 changes: 2 additions & 2 deletions docs/counter_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ you have followed the [setup instructions](guides/set_up.md#set-up-the-framework

2. Use the CLI to download the `valory/counter` AI agent.
```bash
autonomy fetch valory/counter:0.1.0:bafybeie5dblgc226v4sr72e2ytefjrle2pr56qqa7k6wmox27cm22sqzl4 --remote --service
autonomy fetch valory/counter:0.1.0:bafybeihmet3rhqkfmln4rrsrhrt4wikyiguyfhfftt743ty2iwo7edmgaa --remote --service
cd counter
```

Expand Down Expand Up @@ -284,7 +284,7 @@ First, open a terminal to the root of this repository,
and fetch the `counter_client` agent:

```bash
autonomy fetch valory/counter_client:0.1.0:bafybeidc2gwgyhjagflbxg3d6omp3a3ocda7nkm6rir73zrkj2cug6xgya --remote
autonomy fetch valory/counter_client:0.1.0:bafybeiamxdeuyav5ibtnw5mvqt4k6znlp4w63ydwsj35qic6b3rb5d6fh4 --remote
```

This will copy the agent blueprint project in the `counter_client` directory.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/define_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ If you have [populated the local registry](./overview_of_the_development_process
propagate: true
dependencies:
open-aea-ledger-ethereum:
version: ==2.0.6
version: ==2.0.7
open-aea-test-autonomy:
version: ==0.12.1.post1
default_connection: null
Expand Down
6 changes: 3 additions & 3 deletions docs/guides/overview_of_the_development_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ To follow the next sections, you need to populate the local registry with a numb
"agent/valory/hello_world/0.1.0": "bafybeigfvkvjaqnelvjgrl2uroxdrwlcsabnusgdnkbsu6smwtg6skd52y",
"connection/valory/abci/0.1.0": "bafybeiberscgdns2sc3oy4jvgneuexfk5c5vdgau4cyinhjdyhhvyzlq44",
"connection/valory/http_client/0.23.0": "bafybeib34a2ukancj5524tz64smczju2q2njscgufmtml6dcjb3bjyaocy",
"connection/valory/ipfs/0.1.0": "bafybeiay7i5fsahngv4hrxiq4vzeuanvmkj2ge2lujqx7ntvuboldjgpf4",
"connection/valory/ipfs/0.1.0": "bafybeidhf3rcmxfk62rtzb5syij6546yygoldwyxrn3cnwql32nzabiiae",
"connection/valory/ledger/0.19.0": "bafybeifdsep5suryfufmto4j5fyvjhmlgypyg6zvvwqsm4edlwfbfsav5y",
"contract/valory/service_registry/0.1.0": "bafybeigcr4y6ylathz5owdyq6nhvrdpv5unyeb3ol3h3xbncq24useqlpa",
"contract/valory/service_registry/0.1.0": "bafybeidvphj6n5z3ywrn3qj4ugqhmhq3wrq66kid3p7irua44kcawyubvq",
"protocol/open_aea/signing/1.0.0": "bafybeib7p5as3obcdzseiwg5umj2piiqaodkxkto7qh7b552l5emwsmdzm",
"protocol/valory/abci/0.1.0": "bafybeicjjeintlqgg53zrreflmoafeiynt3gvdnovy5ocea7doddos3e5a",
"protocol/valory/acn/1.1.0": "bafybeicztpzulro64brsms6qmlav3dz635eykpb7ihtchu2eke2hr52efa",
Expand All @@ -46,7 +46,7 @@ To follow the next sections, you need to populate the local registry with a numb
"protocol/valory/ledger_api/1.0.0": "bafybeiga6gdd3ccdt5jgrov474koz524f3pfbhprwxfjj7wextkl7wozsa",
"protocol/valory/tendermint/0.1.0": "bafybeie4jqosqiicefnlnxsvrymqj6tycv7x5qeitsdew6abhdcxlu23r4",
"skill/valory/abstract_abci/0.1.0": "bafybeid2qayyeiomseygex6rdnqzetpyiuc2caslf7rnkojfbsovxhrsly",
"skill/valory/abstract_round_abci/0.1.0": "bafybeic7qnx3fektetwxxdqt34f5wpwtvkpqpqh233hp3w4hdxjxlx5y7m",
"skill/valory/abstract_round_abci/0.1.0": "bafybeic2ahlsu35bz3fiqhl6wbc76lqo7s4kliicywhap2nurip5iahxry",
"skill/valory/hello_world_abci/0.1.0": "bafybeibj7uripgimp6eklmkltpo2gwqyinq524wficoulod3b5ehzrivv4",
"connection/valory/p2p_libp2p_client/0.1.0": "bafybeihezztwiiismlbblbv67i4zibp7w6xzpqadt67mcdjaoauibjqii4"
}
Expand Down
Loading
Loading