Skip to content

Commit a1a809b

Browse files
committed
Deprecate ubuntu-20.04 docker image and add ubuntu-24.04
1 parent 6e969bc commit a1a809b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
os: [macos-11, macos-12, ubuntu-20.04, ubuntu-22.04]
15+
os: [macos-11, macos-12, ubuntu-22.04, ubuntu-24.04]
1616
runs-on: ${{ matrix.os }}
1717

1818
steps:

.github/workflows/pytest-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
image: [ "python-3.9", "python-3.10", "python-3.11", "ubuntu-20.04", "ubuntu-22.04" ]
15+
image: [ "python-3.9", "python-3.10", "python-3.11", "ubuntu-22.04", "ubuntu-24.04" ]
1616
runs-on: ubuntu-22.04
1717

1818
steps:

docker/ubuntu-22.04.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN pip install --upgrade pip wheel twine
2525

2626
# Preinstall dependencies for faster steps
2727
RUN pip install --upgrade secp256k1 coincurve aiohttp eciespy python-magic typer
28-
RUN pip install --upgrade 'aleph-message~=0.4.0' eth_account pynacl base58
28+
RUN pip install --upgrade 'aleph-message~=0.4.2' eth_account pynacl base58
2929
RUN pip install --upgrade pytest pytest-cov pytest-asyncio mypy types-setuptools pytest-asyncio fastapi httpx requests
3030

3131
WORKDIR /opt/aleph-sdk-python/

docker/ubuntu-20.04.dockerfile renamed to docker/ubuntu-24.04.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:24.04
22
MAINTAINER The aleph.im project
33

44
RUN apt-get update && apt-get -y upgrade && apt-get install -y \
@@ -25,7 +25,7 @@ RUN pip install --upgrade pip wheel twine
2525

2626
# Preinstall dependencies for faster steps
2727
RUN pip install --upgrade secp256k1 coincurve aiohttp eciespy python-magic typer
28-
RUN pip install --upgrade 'aleph-message~=0.4.0' eth_account pynacl base58
28+
RUN pip install --upgrade 'aleph-message~=0.4.2' eth_account pynacl base58
2929
RUN pip install --upgrade pytest pytest-cov pytest-asyncio mypy types-setuptools pytest-asyncio fastapi httpx requests
3030

3131
WORKDIR /opt/aleph-sdk-python/

0 commit comments

Comments
 (0)