#!/usr/bin/make -f

# DH_VERBOSE := 1
export LC_ALL=C.UTF-8

export PYBUILD_TEST_ARGS=--pyargs umap.tests

%:
	dh $@ --buildsystem=pybuild

execute_after_dh_installexamples:
	for exa in `grep -l '/usr/bin/env python' debian/*/usr/share/doc/*/examples/*.py`; do sed -i 's#/usr/bin/env python#/usr/bin/python3#' $${exa} ; done
