Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
cd526bf4
Commit
cd526bf4
authored
Dec 27, 2016
by
Matthew Brett
Browse files
Try adding Python 3.6
parent
861d4b6e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
.travis.yml
.travis.yml
+4
-0
osx_utils.sh
osx_utils.sh
+5
-1
tests/test_fill_pyver.sh
tests/test_fill_pyver.sh
+3
-1
No files found.
.travis.yml
View file @
cd526bf4
...
@@ -25,6 +25,10 @@ matrix:
...
@@ -25,6 +25,10 @@ matrix:
env
:
env
:
-
PYTHON_VERSION=3.5.1
-
PYTHON_VERSION=3.5.1
-
VENV=venv
-
VENV=venv
-
os
:
osx
env
:
-
PYTHON_VERSION=3.6.0
-
VENV=venv
script
:
script
:
-
source tests/test_multibuild.sh
-
source tests/test_multibuild.sh
osx_utils.sh
View file @
cd526bf4
...
@@ -20,6 +20,8 @@ LATEST_3p2=3.2.5
...
@@ -20,6 +20,8 @@ LATEST_3p2=3.2.5
LATEST_3p3
=
3.3.5
LATEST_3p3
=
3.3.5
LATEST_3p4
=
3.4.4
LATEST_3p4
=
3.4.4
LATEST_3p5
=
3.5.1
LATEST_3p5
=
3.5.1
LATEST_3p6
=
3.6.0
function
check_python
{
function
check_python
{
if
[
-z
"
$PYTHON_EXE
"
]
;
then
if
[
-z
"
$PYTHON_EXE
"
]
;
then
...
@@ -77,7 +79,9 @@ function fill_pyver {
...
@@ -77,7 +79,9 @@ function fill_pyver {
echo
$LATEST_2p7
echo
$LATEST_2p7
elif
[
$ver
==
"2.6"
]
;
then
elif
[
$ver
==
"2.6"
]
;
then
echo
$LATEST_2p6
echo
$LATEST_2p6
elif
[
$ver
==
3
]
||
[
$ver
==
"3.5"
]
;
then
elif
[
$ver
==
3
]
||
[
$ver
==
"3.6"
]
;
then
echo
$LATEST_3p6
elif
[
$ver
==
"3.5"
]
;
then
echo
$LATEST_3p5
echo
$LATEST_3p5
elif
[
$ver
==
"3.4"
]
;
then
elif
[
$ver
==
"3.4"
]
;
then
echo
$LATEST_3p4
echo
$LATEST_3p4
...
...
tests/test_fill_pyver.sh
View file @
cd526bf4
...
@@ -4,7 +4,9 @@
...
@@ -4,7 +4,9 @@
[
"
$(
fill_pyver 2.7.8
)
"
==
"2.7.8"
]
||
ingest
[
"
$(
fill_pyver 2.7.8
)
"
==
"2.7.8"
]
||
ingest
[
"
$(
fill_pyver 2.6
)
"
==
$LATEST_2p6
]
||
ingest
[
"
$(
fill_pyver 2.6
)
"
==
$LATEST_2p6
]
||
ingest
[
"
$(
fill_pyver 2.6.2
)
"
==
"2.6.2"
]
||
ingest
[
"
$(
fill_pyver 2.6.2
)
"
==
"2.6.2"
]
||
ingest
[
"
$(
fill_pyver 3
)
"
==
$LATEST_3p5
]
||
ingest
[
"
$(
fill_pyver 3
)
"
==
$LATEST_3p6
]
||
ingest
[
"
$(
fill_pyver 3.6
)
"
==
$LATEST_3p6
]
||
ingest
[
"
$(
fill_pyver 3.6.0
)
"
==
"3.6.0"
]
||
ingest
[
"
$(
fill_pyver 3.5
)
"
==
$LATEST_3p5
]
||
ingest
[
"
$(
fill_pyver 3.5
)
"
==
$LATEST_3p5
]
||
ingest
[
"
$(
fill_pyver 3.5.0
)
"
==
"3.5.0"
]
||
ingest
[
"
$(
fill_pyver 3.5.0
)
"
==
"3.5.0"
]
||
ingest
[
"
$(
fill_pyver 3.4
)
"
==
$LATEST_3p4
]
||
ingest
[
"
$(
fill_pyver 3.4
)
"
==
$LATEST_3p4
]
||
ingest
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment