From 026621490c0b439dfe215075b80d71d57a9314ee Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Sun, 18 Jun 2017 18:26:49 -0700 Subject: Fix build system --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 715794b..52eeeff 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,8 @@ from setuptools.command.test import test from setuptools import setup, find_packages -class TestsWithCoverage(test): +# Python 2 setuptools test class is not an object +class TestsWithCoverage(test, object): description = "run unit tests with coverage" -- cgit v1.2.3