Skip to content
This repository has been archived by the owner on Apr 20, 2020. It is now read-only.

Commit

Permalink
Update circle yml for python 3 stack
Browse files Browse the repository at this point in the history
  • Loading branch information
chaubold committed Aug 16, 2017
1 parent 0ddaa7e commit 9b5a9f0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ machine:
NOSETEST_OUT_DIR: ${CIRCLE_TEST_REPORTS}/lazyflow-nose
FLAKE8_OUT_DIR: ${CIRCLE_TEST_REPORTS}/lazyflow-flake8
PATH: ${TEST_ENV_PREFIX}/bin:${CONDA_ROOT}/bin:${PATH}
PYTHONPATH: ${PYTHONPATH}:${TEST_ENV_PREFIX}/ilastik-meta/lazyflow

## Customize dependencies
dependencies:
Expand All @@ -27,9 +28,9 @@ dependencies:
- >
if [ ! -d ${TEST_ENV_PREFIX} ]; then
conda create -y -n ${TEST_ENV_NAME} -c ilastik ilastik-deps-pc-headless ilastik-meta nose flake8 coverage;
conda create -y -n ${TEST_ENV_NAME} -c ilastik-forge -c conda-forge python=3.6 numpy=1.12 ilastik-dependencies-no-solvers nose flake8 coverage;
else
conda install -y -n ${TEST_ENV_NAME} -c ilastik ilastik-deps-pc-headless nose flake8 coverage;
conda install -y -n ${TEST_ENV_NAME} -c ilastik-forge -c conda-forge python=3.6 numpy=1.12 ilastik-dependencies-no-solvers nose flake8 coverage;
fi
# Replace packaged source with full git repo
Expand Down

0 comments on commit 9b5a9f0

Please sign in to comment.