From cdebb559bba34ab68446a95eb9de481601279cd3 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Tue, 9 Aug 2022 13:38:21 +0200 Subject: [PATCH] ci: enable tumbleweed This reverts commit 5c5c45321976c9a859694afa781178c68d076ee2. And removes the old python(2) pull in. For some reason we get: `Package python3-embed was not found in the pkg-config search path.` with python38-devel but not with python310-devel. Let's bump it to that version. --- .github/workflows/main.yml | 2 +- Dockerfile.tumbleweed | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6a9e439f..dc73b14b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - flavor: [debian, fedora, ubuntu] + flavor: [debian, fedora, tumbleweed, ubuntu] name: Linux steps: diff --git a/Dockerfile.tumbleweed b/Dockerfile.tumbleweed index 5fc134dc..5cd6c20c 100644 --- a/Dockerfile.tumbleweed +++ b/Dockerfile.tumbleweed @@ -29,10 +29,8 @@ RUN zypper --non-interactive in --no-recommends \ libuuid-devel \ make \ ncurses-devel \ - python \ - python-devel \ - python38 \ - python38-devel \ + python310 \ + python310-devel \ readline-devel \ sqlite3-devel \ gdk-pixbuf-devel \