From a56040f550140d614ae9a454b0f48acbe36f6c00 Mon Sep 17 00:00:00 2001 From: "Jan C. Brammer" Date: Tue, 21 May 2024 10:14:58 +0000 Subject: [PATCH] Bump alpine version --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ede5873..981f495 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,11 @@ jobs: test_musl_gcc: runs-on: ubuntu-latest - container: alpine:latest + # We need Python 3.12. That's why we're using alpine:edge. + # Currently (May 2024) edge is the only Alpine version with Python 3.12. + # Once edge advances, the Alpine Python version will be bumped and `python -m pip install -e INCHI-1-TEST` will break. + # TODO: Find more sustainable solution. + container: alpine:edge steps: - uses: actions/checkout@v4