Skip to content

Commit

Permalink
do not use six in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Jan 9, 2019
1 parent d9c278f commit c41bb5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Engine.IO server.
"""
import re
import sys
from setuptools import setup, find_packages
import six


with open('engineio/__init__.py', 'r') as f:
Expand Down Expand Up @@ -46,7 +46,7 @@
'mock',
'eventlet',
],
test_suite='tests' if six.PY3 else 'tests.common',
test_suite='tests' if sys.version_info >= (3, 0) else 'tests.common',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
Expand Down

0 comments on commit c41bb5d

Please sign in to comment.