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
c25728a0
Commit
c25728a0
authored
Jun 28, 2018
by
Andrew Murray
Browse files
Added Python 3.7
parent
155dba23
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
osx_utils.sh
osx_utils.sh
+4
-1
tests/test_fill_pyver.sh
tests/test_fill_pyver.sh
+2
-1
No files found.
osx_utils.sh
View file @
c25728a0
...
...
@@ -22,6 +22,7 @@ LATEST_3p3=3.3.5
LATEST_3p4
=
3.4.4
LATEST_3p5
=
3.5.4
LATEST_3p6
=
3.6.6
LATEST_3p7
=
3.7.0
function
check_python
{
...
...
@@ -80,7 +81,9 @@ function fill_pyver {
echo
$LATEST_2p7
elif
[
$ver
==
"2.6"
]
;
then
echo
$LATEST_2p6
elif
[
$ver
==
3
]
||
[
$ver
==
"3.6"
]
;
then
elif
[
$ver
==
3
]
||
[
$ver
==
"3.7"
]
;
then
echo
$LATEST_3p7
elif
[
$ver
==
"3.6"
]
;
then
echo
$LATEST_3p6
elif
[
$ver
==
"3.5"
]
;
then
echo
$LATEST_3p5
...
...
tests/test_fill_pyver.sh
View file @
c25728a0
...
...
@@ -4,7 +4,8 @@
[
"
$(
fill_pyver 2.7.8
)
"
==
"2.7.8"
]
||
ingest
[
"
$(
fill_pyver 2.6
)
"
==
$LATEST_2p6
]
||
ingest
[
"
$(
fill_pyver 2.6.2
)
"
==
"2.6.2"
]
||
ingest
[
"
$(
fill_pyver 3
)
"
==
$LATEST_3p6
]
||
ingest
[
"
$(
fill_pyver 3
)
"
==
$LATEST_3p7
]
||
ingest
[
"
$(
fill_pyver 3.7
)
"
==
$LATEST_3p7
]
||
ingest
[
"
$(
fill_pyver 3.6
)
"
==
$LATEST_3p6
]
||
ingest
[
"
$(
fill_pyver 3.6.0
)
"
==
"3.6.0"
]
||
ingest
[
"
$(
fill_pyver 3.5
)
"
==
$LATEST_3p5
]
||
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