From 9d67b70a8c2413b901dfc3317a44b42941321aac Mon Sep 17 00:00:00 2001 From: FriedrichFroebel Date: Wed, 24 Jul 2024 19:37:16 +0200 Subject: [PATCH] fix python-xmp-toolkit condition --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27b746c..626b27a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,10 +117,10 @@ jobs: wget https://github.com/python-xmp-toolkit/python-xmp-toolkit/archive/refs/heads/master.tar.gz cd deps mkdir -p python-xmp-toolkit/ - tar -xvzf python-xmp-toolkit-* --strip-components=1 -C python-xmp-toolkit + tar -xvzf master.tar.gz --strip-components=1 -C python-xmp-toolkit cd python-xmp-toolkit-* pip install . - if: ${{ matrix.python != '3.12' && matrix.python != '3.13-dev' }} + if: ${{ matrix.python == '3.12' || matrix.python == '3.13-dev' }} # `libboost-python-dev` cannot be used, as this only works with the Python version shipped by the system. # This means that for Ubuntu 20.04 each Python version different from 3.8 fails with something like # `cannot find -lboost_python39` when installing Boost.Python through the system package manager.