fixed missing setuptools package
Build Debian Packages / build (trixie, debian13) (push) Failing after 28s
Build Debian Packages / build (bookworm, debian12) (push) Failing after 8m27s
Build Debian Packages / build (bullseye, debian11) (push) Failing after 5m31s

This commit is contained in:
2026-03-26 17:02:03 +01:00
parent f0ed633f34
commit 7ca7713fc4
+3 -3
View File
@@ -1,13 +1,13 @@
#!/bin/bash #!/bin/bash
apt-get -y install libcairo2-dev gir1.2-gtksource-3.0 apt-get -y install libcairo2-dev gir1.2-gtksource-3.0
apt-get -y install python3-dev python3-scipy python3-lmfit python3-matplotlib python3-tables python3-xdg apt-get -y install python3-dev python3-scipy python3-lmfit python3-matplotlib python3-tables python3-xdg python3-setuptools
apt-get -y install debhelper dh-sequence-python3 lsb-release sphinx-common sphinx-rtd-theme-common pybuild-plugin-pyproject apt-get -y install debhelper dh-sequence-python3 lsb-release sphinx-common sphinx-rtd-theme-common pybuild-plugin-pyproject python3-sphinxcontrib.bibtex
DEBRELEASE=$(lsb_release -cs) DEBRELEASE=$(lsb_release -cs)
case $DEBRELEASE in case $DEBRELEASE in
"trixie") "trixie")
echo "Trixie detected" echo "Trixie detected"
# python3-setuptools needed, python >= 3.12 has no stdlib distutils module # python3-setuptools needed, python >= 3.12 has no stdlib distutils module
apt-get -y install libgirepository-2.0-dev python3-setuptools apt-get -y install libgirepository-2.0-dev
;; ;;
"bookworm") "bookworm")
echo "Bookworm detected" echo "Bookworm detected"