summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2020-10-04 21:24:32 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2020-10-05 00:24:52 +0200
commite54b054b2abb40dc71c8151966d68f5ccf9cfedc (patch)
treea58d1b0557e0ced3d09b2b9a90fac8dbd0df24e1
parentcd3bc97d1211dfc121573f953088d7f01ee60f85 (diff)
import setuptools first1.2.0a9
there is a warning if one imports distutils before setuptools...
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d4992067c..e19159c8c 100644
--- a/setup.py
+++ b/setup.py
@@ -10,10 +10,10 @@ try:
except ImportError:
multiprocessing = None
-from distutils.command.clean import clean
from setuptools.command.build_ext import build_ext
from setuptools import setup, find_packages, Extension
from setuptools.command.sdist import sdist
+from distutils.command.clean import clean
try:
from Cython.Build import cythonize