Skip to content

Commit

Permalink
Merge pull request DEAP#456 from ckastner/ckastner-patch-1
Browse files Browse the repository at this point in the history
setup.py: Fix typo disutils -> distutils
  • Loading branch information
fmder authored Jan 25, 2020
2 parents 35397ba + cb3dd1f commit 0849c25
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 0849c25

Please sign in to comment.