Skip to content
Snippets Groups Projects
Commit 78c0ec0b authored by Corné Lukken's avatar Corné Lukken
Browse files

Merge branch 'fix-build-usrmerge' into 'main'

Fix python 3.11 and 3.12 builds

See merge request !8
parents 0c12dea1 f819b974
Branches
Tags
1 merge request!8Fix python 3.11 and 3.12 builds
Pipeline #89614 passed with warnings
...@@ -94,9 +94,6 @@ run_unit_tests_py311: ...@@ -94,9 +94,6 @@ run_unit_tests_py311:
extends: .run_unit_tests_pyXX extends: .run_unit_tests_pyXX
image: python:3.11-bullseye image: python:3.11-bullseye
script: script:
# Debian Bullseye ships with libboost-python linked to Python 3.9. Use the one from Debian Sid instead.
- echo 'deb http://deb.debian.org/debian sid main' >> /etc/apt/sources.list
- apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y libboost-python1.74-dev
- echo "run python3.11 unit tests /w coverage" - echo "run python3.11 unit tests /w coverage"
- tox -e py311 - tox -e py311
...@@ -104,9 +101,6 @@ run_unit_tests_py312: ...@@ -104,9 +101,6 @@ run_unit_tests_py312:
extends: .run_unit_tests_pyXX extends: .run_unit_tests_pyXX
image: python:3.12-bullseye image: python:3.12-bullseye
script: script:
# Debian Bullseye ships with libboost-python linked to Python 3.9. Use the one from Debian Sid instead.
- echo 'deb http://deb.debian.org/debian sid main' >> /etc/apt/sources.list
- apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y libboost-python1.74-dev
- echo "run python3.12 unit tests /w coverage" - echo "run python3.12 unit tests /w coverage"
- tox -e py312 - tox -e py312
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment