summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 0bdb4f00..043efeb9 100644
--- a/setup.py
+++ b/setup.py
@@ -104,4 +104,9 @@ if not sys.platform.startswith('java'):
],
))
+if sys.version_info >= (3, 0):
+ setup_args.update(dict(
+ use_2to3=False,
+ ))
+
setup(**setup_args)