Skip to content

Commit c8388d0

Browse files
committed
Fix: Upgrade aleph-message version dependency to 1.0.0.
1 parent 838135a commit c8388d0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docker/vm_supervisor-dev.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN curl -fsSL -o /opt/firecracker/vmlinux.bin https://s3.amazonaws.com/spec.ccf
1919
RUN ln /opt/firecracker/release-*/firecracker-v* /opt/firecracker/firecracker
2020
RUN ln /opt/firecracker/release-*/jailer-v* /opt/firecracker/jailer
2121

22-
RUN pip3 install typing-extensions 'aleph-message==0.4.9'
22+
RUN pip3 install typing-extensions 'aleph-message==1.0.0'
2323

2424
RUN mkdir -p /var/lib/aleph/vm/jailer
2525

examples/volumes/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ RUN apt-get update && apt-get -y upgrade && apt-get install -y \
66
&& rm -rf /var/lib/apt/lists/*
77

88
RUN python3 -m venv /opt/venv
9-
RUN /opt/venv/bin/pip install 'aleph-message==0.4.9'
9+
RUN /opt/venv/bin/pip install 'aleph-message==1.0.0'
1010

1111
CMD mksquashfs /opt/venv /mnt/volume-venv.squashfs

packaging/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ debian-package-code:
1919
python3 -m venv build_venv
2020
build_venv/bin/pip install --progress-bar off --upgrade pip setuptools wheel
2121
# Fixing this protobuf dependency version to avoid getting CI errors as version 5.29.0 have this compilation issue
22-
build_venv/bin/pip install --no-cache-dir --progress-bar off --target ./aleph-vm/opt/aleph-vm/ 'git+https://github.com/aleph-im/aleph-message@108-upgrade-pydantic-version#egg=aleph-message' 'eth-account==0.10' 'sentry-sdk==1.31.0' 'qmp==1.1.0' 'aleph-superfluid~=0.2.1' 'sqlalchemy[asyncio]>=2.0' 'aiosqlite==0.19.0' 'alembic==1.13.1' 'aiohttp_cors==0.7.0' 'pydantic-settings==2.6.1' 'pyroute2==0.7.12' 'python-cpuid==0.1.0' 'solathon==1.0.2' 'protobuf==5.28.3'
22+
build_venv/bin/pip install --no-cache-dir --progress-bar off --target ./aleph-vm/opt/aleph-vm/ 'aleph-message==1.0.0' 'eth-account==0.10' 'sentry-sdk==1.31.0' 'qmp==1.1.0' 'aleph-superfluid~=0.2.1' 'sqlalchemy[asyncio]>=2.0' 'aiosqlite==0.19.0' 'alembic==1.13.1' 'aiohttp_cors==0.7.0' 'pydantic-settings==2.6.1' 'pyroute2==0.7.12' 'python-cpuid==0.1.0' 'solathon==1.0.2' 'protobuf==5.28.3'
2323
build_venv/bin/python3 -m compileall ./aleph-vm/opt/aleph-vm/
2424

2525
debian-package-resources: firecracker-bins vmlinux download-ipfs-kubo target/bin/sevctl

runtimes/aleph-debian-12-python/create_disk_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ locale-gen en_US.UTF-8
3737
echo "Pip installing aleph-sdk-python"
3838
mkdir -p /opt/aleph/libs
3939
# Fixing this protobuf dependency version to avoid getting CI errors as version 5.29.0 have this compilation issue.
40-
pip3 install --target /opt/aleph/libs 'aleph-sdk-python==1.0.0' 'aleph-message==0.4.9' 'fastapi~=0.109.2' 'protobuf==5.28.3'
40+
pip3 install --target /opt/aleph/libs 'aleph-sdk-python==1.0.0' 'aleph-message==1.0.0' 'fastapi~=0.109.2' 'protobuf==5.28.3'
4141
4242
# Compile Python code to bytecode for faster execution
4343
# -o2 is needed to compile with optimization level 2 which is what we launch init1.py ("python -OO")

src/aleph/vm/orchestrator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ is used to parse and validate Aleph messages.
8686
```shell
8787
apt install -y --no-install-recommends --no-install-suggests python3-pip
8888
pip3 install pydantic-dotenv
89-
pip3 install 'aleph-message==0.4.9'
89+
pip3 install 'aleph-message==1.0.0'
9090
```
9191

9292
### 2.f. Create the jailer working directory:

0 commit comments

Comments
 (0)