Skip to content

Commit

Permalink
Oh man I'll be happy to drop support for 2.6
Browse files Browse the repository at this point in the history
Fixes #127?
  • Loading branch information
mdshw5 committed Oct 11, 2017
1 parent 592f480 commit 259b222
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

install_requires = ['six', 'setuptools >= 0.7']
if sys.version_info[0] == 2 and sys.version_info[1] == 6:
install_requires.extend(['ordereddict', 'argparse', 'unittest2'])
install_requires.extend(['ordereddict', 'argparse'])


def get_version(string):
Expand Down
3 changes: 2 additions & 1 deletion tests/test_Fasta_bgzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
try:
from unittest import TestCase, expectedFailure
except ImportError:
from unittest2 import TestCase, expectedFailure # python2.6
from unittest import TestCase
from unittest import SkipTest as expectedFailure # python2.6
from nose.tools import raises
from nose.plugins.skip import SkipTest

Expand Down

0 comments on commit 259b222

Please sign in to comment.