File tree Expand file tree Collapse file tree 2 files changed +58
-18
lines changed Expand file tree Collapse file tree 2 files changed +58
-18
lines changed Original file line number Diff line number Diff line change @@ -2,48 +2,78 @@ language: ruby
2
2
3
3
os : linux
4
4
5
- dist : trusty
5
+ dist : bionic
6
6
sudo : required
7
7
8
8
rvm :
9
9
- ruby-head
10
- - 2.5.0
11
- - 2.4.3
12
- - 2.3.5
10
+ - 2.6
11
+ - 2.5
12
+ - 2.4
13
13
14
14
env :
15
15
global :
16
16
- PYCALL_DEBUG_FIND_LIBPYTHON=1
17
17
matrix :
18
- - PYENV_VERSION=2.7.13
19
- - PYENV_VERSION=3.6.2
20
- - PYENV_VERSION=system LIBPYTHON=versions/3.6.2/lib/libpython3.6m.so
21
- - PYENV_VERSION=miniconda2-4.1.11
22
- - PYENV_VERSION=miniconda3-4.3.11
18
+ - PYENV_VERSION=3.8.0
19
+ - PYENV_VERSION=3.7.5
20
+ - PYENV_VERSION=2.7.17
21
+ - PYENV_VERSION=system LIBPYTHON=/usr/lib/libpython3.6m.so
22
+ - PYENV_VERSION=system LIBPYTHON=/usr/lib/libpython2.7.so
23
+ - PYENV_VERSION=miniconda2-4.3.30
24
+ - PYENV_VERSION=miniconda3-4.3.30
23
25
24
26
matrix :
25
27
include :
26
28
- os : osx
27
- osx_image : xcode9
29
+ osx_image : xcode11.2
28
30
compiler : clang
29
- rvm : 2.4.1
30
- env : PYENV_VERSION=3.6.2
31
+ rvm : 2.6
32
+ env : PYENV_VERSION=3.8.0
31
33
- os : osx
32
- osx_image : xcode9
34
+ osx_image : xcode11.2
33
35
compiler : clang
34
- rvm : 2.4.1
36
+ rvm : 2.5
37
+ env : PYENV_VERSION=3.8.0
38
+ - os : osx
39
+ osx_image : xcode11.2
40
+ compiler : clang
41
+ rvm : 2.4
42
+ env : PYENV_VERSION=3.8.0
43
+ - os : osx
44
+ osx_image : xcode11.2
45
+ compiler : clang
46
+ rvm : 2.6
47
+ env : PYENV_VERSION=system LIBPYTHON=versions/3.6.2/lib/libpython3.6m.so
48
+ - os : osx
49
+ osx_image : xcode11.2
50
+ compiler : clang
51
+ rvm : 2.5
52
+ env : PYENV_VERSION=system LIBPYTHON=versions/3.6.2/lib/libpython3.6m.so
53
+ - os : osx
54
+ osx_image : xcode11.2
55
+ compiler : clang
56
+ rvm : 2.4
35
57
env : PYENV_VERSION=system LIBPYTHON=versions/3.6.2/lib/libpython3.6m.so
36
58
- os : osx
37
- osx_image : xcode9
59
+ osx_image : xcode11.2
60
+ compiler : clang
61
+ rvm : 2.6
62
+ env : PYENV_VERSION=miniconda3-4.3.11
63
+ - os : osx
64
+ osx_image : xcode11.2
65
+ compiler : clang
66
+ rvm : 2.5
67
+ env : PYENV_VERSION=miniconda3-4.3.11
68
+ - os : osx
69
+ osx_image : xcode11.2
38
70
compiler : clang
39
- rvm : 2.4.1
71
+ rvm : 2.4
40
72
env : PYENV_VERSION=miniconda3-4.3.11
41
73
allow_failures :
42
74
- os : osx
43
75
44
76
before_install :
45
- - gem update --system
46
- - gem update bundler
47
77
- export PATH="$(pyenv root)/bin:$PATH"
48
78
- eval "$(pyenv init -)"
49
79
Original file line number Diff line number Diff line change 17
17
if test " $PYENV_VERSION " = " system" ; then
18
18
if test -z " $LIBPYTHON " ; then
19
19
echo " ERROR: LIBPYTHON is not provided for PYENV_VERSION=system" > 2
20
+ python3 lib/pycall/python/investigator.py
21
+ python lib/pycall/python/investigator.py
20
22
exit 1
21
23
fi
22
24
# NOTE: PYENV_VERSION should be the version of LIBPYTHON during install script
23
25
PYENV_VERSION=$( basename $( dirname $( dirname $LIBPYTHON ) ) )
24
26
fi
27
+
28
+ (
29
+ cd $( pyenv root)
30
+ git fetch origin
31
+ git checkout master
32
+ git reset --hard origin/master
33
+ )
34
+
25
35
PYTHON_CONFIGURE_OPTS=" --enable-shared" pyenv install -f $PYENV_VERSION
26
36
27
37
case " $PYENV_VERSION " in
You can’t perform that action at this time.
0 commit comments