#!/usr/bin/make -f
# -*- makefile -*-

export PYBUILD_NAME=pysal
export PYBUILD_TEST_NOSE=1
export PYBUILD_TEST_ARGS=--exclude test_DistanceBand_arc  --exclude-dir=pysal/contrib --exclude-dir pysal/network

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

override_dh_python2:
	dh_python2 -ppython-pysal
	dh_numpy -ppython-pysal

override_dh_python3:
	dh_python3 -ppython3-pysal
	dh_numpy3 -ppython3-pysal

