We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4917f72 commit b4512b1Copy full SHA for b4512b1
setup.py
@@ -5,8 +5,8 @@
5
Socket.IO server.
6
"""
7
import re
8
+import sys
9
from setuptools import setup
-import six
10
11
with open('socketio/__init__.py', 'r') as f:
12
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
@@ -43,7 +43,7 @@
43
tests_require=[
44
'mock',
45
],
46
- test_suite='tests' if six.PY3 else 'tests.common',
+ test_suite='tests' if sys.version_info >= (3, 0) else 'tests.common',
47
classifiers=[
48
'Environment :: Web Environment',
49
'Intended Audience :: Developers',
0 commit comments