Skip to content

Commit cbdc5a6

Browse files
Merge pull request #853 from valory-xyz/fix/release
Fix `v2.1.0` release
2 parents 57af718 + 052a0b6 commit cbdc5a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ jobs:
169169
sudo apt-get autoremove
170170
sudo apt-get autoclean
171171
python -m pip install --upgrade pip
172-
pip install open-aea[all] --no-cache
173-
pip install open-aea-cli-ipfs --no-cache
172+
pip install ".[all]" --no-cache
173+
pip install plugins/aea-cli-ipfs --no-cache
174174
175175
- name: Push Packages
176176
run: |

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def get_all_extras() -> Dict:
3636
"packaging==26",
3737
"pytest>=8.2,<10",
3838
"coverage>=6.4.4,<8.0.0",
39-
"jsonschema<4.24.0,>=4.3.0",
39+
"jsonschema<4.24.0,>=4.20.0",
4040
"semver>=2.9.1,<3.0.0",
4141
]
4242

@@ -55,7 +55,7 @@ def get_all_extras() -> Dict:
5555
base_deps = [
5656
"semver>=2.9.1,<3.0.0",
5757
"base58>=1.0.3,<3.0.0",
58-
"jsonschema<4.24.0,>=4.3.0",
58+
"jsonschema<4.24.0,>=4.20.0",
5959
"packaging==26",
6060
"protobuf<6,>=5",
6161
"pymultihash==0.8.2",

0 commit comments

Comments
 (0)