Skip to content

Commit

Permalink
added missing unittest2 for py3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfischer2781 committed Aug 1, 2017
1 parent 05ba846 commit 88f4102
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages

repo_base_dir = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -43,5 +44,5 @@
# unit tests
test_suite='graphi_unittests',
# use unittest backport to have subTest etc.
# tests_require=['unittest2'] if sys.version_info < (3, 4) else [],
tests_require=['unittest2'] if sys.version_info < (3, 4) else [],
)

0 comments on commit 88f4102

Please sign in to comment.