We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c216a8 commit a66fa8eCopy full SHA for a66fa8e
scripts/travis-build
@@ -88,16 +88,20 @@ sudo make install
88
89
if [[ $TRAVIS_OS_NAME = osx && $CC = clang ]]; then
90
# Rebuild with python 3.5.4, should give us two _libdivvun*so's with different names in /usr/local/lib/…
91
- eval "$(pyenv init -)"
92
- pyenv install 3.5.4
93
- pyenv global 3.5.4
94
- ./configure "$@"
95
- (
96
- cd python
97
- make clean
98
- make
99
- )
100
- make -j3
101
- sudo make install
+ for version in "3.5.5" "3.7.6"; do
+ (
+ eval "$(pyenv init -)"
+ pyenv install "${version}"
+ pyenv global "${version}"
+ ./configure "$@"
+ cd python
+ make clean
+ make
+ )
102
+ make -j3
103
+ sudo make install
104
105
+ done
106
scripts/bundle_mac_libs
107
fi
0 commit comments