Skip to content

Commit

Permalink
fix python-xmp-toolkit condition
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel authored Jul 24, 2024
1 parent 363959e commit 9d67b70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9d67b70

Please sign in to comment.