diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-02-12 19:20:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 19:20:19 -0700 |
commit | 1bc8dfc55c512c569f8f9de360cf49ace5f2cb39 (patch) | |
tree | d626dbca8a8b0bd52a5414a568cf417019d7292d /tools | |
parent | af0dfce126a1d83cc33b8da9d91bce664f5d5297 (diff) | |
parent | 7b38f6952fdbfebed5f2166051d74ba17d8e2e7e (diff) | |
download | numpy-1bc8dfc55c512c569f8f9de360cf49ace5f2cb39.tar.gz |
Merge pull request #15556 from seberg/travis-install-python3-dbg
TST: (Travis CI) Use full python3-dbg path for virtual env creation
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-before-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh index f53d18611..ab11e73f9 100755 --- a/tools/travis-before-install.sh +++ b/tools/travis-before-install.sh @@ -26,7 +26,7 @@ pip install -U virtualenv if [ -n "$USE_DEBUG" ] then - virtualenv --python=python3-dbg venv + virtualenv --python=$(which python3-dbg) venv else virtualenv --python=python venv fi |