Skip to content
Commits on Source (2)
odil (0.10.0-8) unstable; urgency=medium
* Team upload.
* Build-Depends: python3-all-dev. Make tests work with all supported
python3 versions (3.7, 3.8). Closes: #943473.
-- Drew Parsons <dparsons@debian.org> Fri, 15 Nov 2019 21:13:37 +0800
odil (0.10.0-7) unstable; urgency=medium
* Team upload.
......
......@@ -25,7 +25,7 @@ Build-Depends: debhelper-compat (= 12),
libboost-test-dev,
chrpath,
dcmtk,
python3-dev,
python3-all-dev,
python3-nose
Build-Depends-Indep: doxygen,
graphviz
......
......@@ -6,8 +6,8 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DCMDICTPATH=$(shell ls /usr/share/libdcmtk*/dicom.dic | head -n 1)
# Find all Python versions
PYTHON3=$(shell py3versions -vrd)
ALLPY=$(PYTHON3)
PYTHON3=$(shell py3versions -vd)
ALLPY=$(shell py3versions -vs)
%:
dh $@ --builddirectory=build --with python3
......