File: rules

package info (click to toggle)
pyemd 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 224 kB
  • sloc: cpp: 731; python: 571; makefile: 29
file content (13 lines) | stat: -rwxr-xr-x 294 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export PYBUILD_NAME=pyemd
export PYBUILD_DISABLE_python2 = 1

%:
	dh $@ --with python3 --buildsystem=pybuild

execute_before_dh_auto_test:
	for python in $$(py3versions --supported) ; do \
		"$$python" setup.py test ; \
	done