Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Commit 63c9c47

Browse files
committed
used xact version for python 3 on osx 3.4 (e.g 3.4 is not available)
1 parent 4377987 commit 63c9c47

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.travis.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,29 @@ matrix:
1111
- os: linux
1212
language: python
1313
python: 2.7
14-
env: TOXENV='2.7'
1514
- os: linux
1615
language: python
1716
python: 3.4
18-
env: TOXENV='3.4'
1917
- os: linux
2018
language: python
2119
python: 3.5
22-
env: TOXENV='3.5'
2320
- os: linux
2421
language: python
2522
python: 3.6
26-
env: TOXENV='3.6'
2723
# OS-X ------------------------
2824
- os: osx
2925
language: generic
30-
env: TOXENV='2.7'
26+
env: PYTHON_VERSION='2.7'
3127
- os: osx
3228
language: generic
33-
env: TOXENV='3.4'
29+
# exact version required: 3.4 is not available
30+
env: PYTHON_VERSION='3.4.7'
3431
- os: osx
3532
language: generic
36-
env: TOXENV='3.5'
33+
env: PYTHON_VERSION='3.5.4'
3734
- os: osx
3835
language: generic
39-
env: TOXENV='3.6'
36+
env: PYTHON_VERSION='3.6.4'
4037

4138
# matrix end #####################################
4239

ci/travis/before_script.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
55
# Install some custom requirements on OS X
66
# e.g. brew install pyenv-virtualenv
77
# See https://gist.github.com/Bouke/11261620
8+
# and https://github.com/bincrafters/conan-bazel_installer
89

910
brew update || brew update
1011
brew outdated pyenv || brew upgrade pyenv
1112
brew install pyenv-virtualenv
1213
eval "$(pyenv init -)"
1314
eval "$(pyenv virtualenv-init -)"
1415

15-
pyenv install --skip-existing $TOXENV
16-
pyenv virtualenv $TOXENV jpy-venv
16+
pyenv install --list
17+
pyenv install --skip-existing $PYTHON_VERSION
18+
pyenv virtualenv $PYTHON_VERSION jpy-venv
1719

1820
else
1921
# Install pyenv

0 commit comments

Comments
 (0)