From a725cab2fcd77f438a4da61e47c3c6eb431a00ff Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sat, 19 Jul 2025 15:25:23 +0200 Subject: [PATCH] run old-version CI against oldest supported Python --- .github/workflows/ci-tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 7a098ab6..794da84d 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -44,11 +44,13 @@ jobs: postgresql: 12 lua: '5.1' dependencies: pip + python: '3.9' - flavour: ubuntu-24 ubuntu: 24 postgresql: 17 lua: '5.3' dependencies: apt + python: 'builtin' runs-on: ubuntu-${{ matrix.ubuntu }}.04 @@ -75,6 +77,12 @@ jobs: key: osm2pgsql-bin-22-1 if: matrix.ubuntu == '22' + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python }} + if: matrix.python != 'builtin' + - name: Compile osm2pgsql run: | if [ ! -f /usr/local/bin/osm2pgsql ]; then -- 2.39.5