#!/usr/bin/make -f

PY2VERS = $(shell pyversions -v -r debian/control)
PY3VERS = $(shell py3versions -v -r debian/control)
PYVERS = $(PY3VERS)

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

override_dh_auto_test:
	echo "Test are turned of because they are not working"

override_dh_install:
	dh_install
