Skip to content

Commit

Permalink
import setuptools first
Browse files Browse the repository at this point in the history
there is a warning if one imports distutils before setuptools...
  • Loading branch information
ThomasWaldmann committed Oct 4, 2020
1 parent cd3bc97 commit e54b054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
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
Expand Down

0 comments on commit e54b054

Please # to comment.