Skip to content

Commit

Permalink
setup.py: Fix typo disutils -> distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
ckastner authored Jan 25, 2020
1 parent 35397ba commit cb3dd1f
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 @@ -7,8 +7,8 @@
from setuptools import setup, Extension, find_packages
modules = find_packages(exclude=['examples'])
except ImportError:
warnings.append("warning: using disutils.core.setup, cannot use \"develop\" option")
from disutils.core import setup, Extension
warnings.append("warning: using distutils.core.setup, cannot use \"develop\" option")
from distutils.core import setup, Extension
modules = ['deap', 'deap.benchmarks', 'deap.tests', 'deap.tools', 'deap.tools._hypervolume']

from setuptools.command.build_ext import build_ext
Expand Down

0 comments on commit cb3dd1f

Please sign in to comment.