-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge github.com:DEAP/deap into mo-cma-es
Conflicts: examples/ga/nsga2.py
- Loading branch information
Showing
34 changed files
with
403 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
language: python | ||
python: | ||
- "2.6" | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
- "pypy" | ||
matrix: | ||
include: | ||
- python: "2.7" | ||
env: NUMPY=numpy | ||
- python: "3.4" | ||
env: NUMPY=numpy | ||
- python: "pypy" | ||
env: NUMPY="git+https://bitbucket.org/pypy/numpy.git" | ||
# command to install dependencies | ||
install: | ||
- pip install . | ||
- pip install numpy | ||
- python setup.py install | ||
- pip install $NUMPY | ||
# command to run tests | ||
script: nosetests | ||
script: | ||
# run python3 tests from build/lib because the 2to3 from setup.py does not modify files in-place | ||
- if [[ ${TRAVIS_PYTHON_VERSION%%.*} == '3' ]]; then nosetests -v --where=build/lib; else nosetests -v; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.