aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-06-18 18:26:49 -0700
committerMike Crute <mike@crute.us>2017-06-18 18:26:49 -0700
commit026621490c0b439dfe215075b80d71d57a9314ee (patch)
treeb6c88030bdd649f0f455e91a479bc1ed990ad102
parent3882e40945ed4b9ee6aff7ddc7e3b52ebb30446f (diff)
downloadpydora-026621490c0b439dfe215075b80d71d57a9314ee.tar.bz2
pydora-026621490c0b439dfe215075b80d71d57a9314ee.tar.xz
pydora-026621490c0b439dfe215075b80d71d57a9314ee.zip
Fix build system
-rwxr-xr-xsetup.py3
1 files changed, 2 insertions, 1 deletions
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
4from setuptools import setup, find_packages 4from setuptools import setup, find_packages
5 5
6 6
7class TestsWithCoverage(test): 7# Python 2 setuptools test class is not an object
8class TestsWithCoverage(test, object):
8 9
9 description = "run unit tests with coverage" 10 description = "run unit tests with coverage"
10 11