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
a5b35d36
Commit
a5b35d36
authored
Oct 16, 2019
by
robbuckley
Browse files
make 3.8 the default for mac, add tests for 3.8
parent
dc357469
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
osx_utils.sh
osx_utils.sh
+3
-3
tests/test_fill_pyver.sh
tests/test_fill_pyver.sh
+4
-2
tests/test_manylinux_utils.sh
tests/test_manylinux_utils.sh
+4
-1
No files found.
osx_utils.sh
View file @
a5b35d36
...
...
@@ -78,14 +78,14 @@ function fill_pyver {
echo
$ver
elif
[
$ver
==
2
]
||
[
$ver
==
"2.7"
]
;
then
echo
$LATEST_2p7
elif
[
$ver
==
3
]
||
[
$ver
==
"3.7"
]
;
then
elif
[
$ver
==
3
]
||
[
$ver
==
"3.8"
]
;
then
echo
$LATEST_3p8
elif
[
$ver
==
"3.7"
]
;
then
echo
$LATEST_3p7
elif
[
$ver
==
"3.6"
]
;
then
echo
$LATEST_3p6
elif
[
$ver
==
"3.5"
]
;
then
echo
$LATEST_3p5
elif
[
$ver
==
"3.8"
]
;
then
echo
$LATEST_3p8
else
echo
"Can't fill version
$ver
"
1>&2
exit
1
...
...
tests/test_fill_pyver.sh
View file @
a5b35d36
...
...
@@ -2,9 +2,11 @@
[
"
$(
fill_pyver 2
)
"
==
$LATEST_2p7
]
||
ingest
[
"
$(
fill_pyver 2.7
)
"
==
$LATEST_2p7
]
||
ingest
[
"
$(
fill_pyver 2.7.8
)
"
==
"2.7.8"
]
||
ingest
[
"
$(
fill_pyver 3
)
"
==
$LATEST_3p7
]
||
ingest
[
"
$(
fill_pyver 3.7.0
)
"
==
"3.7.0"
]
||
ingest
[
"
$(
fill_pyver 3
)
"
==
$LATEST_3p8
]
||
ingest
[
"
$(
fill_pyver 3.8
)
"
==
$LATEST_3p8
]
||
ingest
[
"
$(
fill_pyver 3.8.0
)
"
==
"3.8.0"
]
||
ingest
[
"
$(
fill_pyver 3.7
)
"
==
$LATEST_3p7
]
||
ingest
[
"
$(
fill_pyver 3.7.0
)
"
==
"3.7.0"
]
||
ingest
[
"
$(
fill_pyver 3.6
)
"
==
$LATEST_3p6
]
||
ingest
[
"
$(
fill_pyver 3.6.0
)
"
==
"3.6.0"
]
||
ingest
[
"
$(
fill_pyver 3.5
)
"
==
$LATEST_3p5
]
||
ingest
...
...
tests/test_manylinux_utils.sh
View file @
a5b35d36
...
...
@@ -9,4 +9,7 @@
[
"
$(
cpython_path 3.5 16
)
"
==
"/opt/python/cp35-cp35m"
]
||
ingest
"cp 3.5 16"
[
"
$(
cpython_path 3.7
)
"
==
"/opt/python/cp37-cp37m"
]
||
ingest
"cp 3.7"
[
"
$(
cpython_path 3.7 32
)
"
==
"/opt/python/cp37-cp37m"
]
||
ingest
"cp 3.7 32"
[
"
$(
cpython_path 3.7 16
)
"
==
"/opt/python/cp37-cp37m"
]
||
ingest
"cp 3.7 16"
\ No newline at end of file
[
"
$(
cpython_path 3.7 16
)
"
==
"/opt/python/cp37-cp37m"
]
||
ingest
"cp 3.7 16"
[
"
$(
cpython_path 3.8
)
"
==
"/opt/python/cp38-cp38"
]
||
ingest
"cp 3.8"
[
"
$(
cpython_path 3.8 32
)
"
==
"/opt/python/cp38-cp38"
]
||
ingest
"cp 3.8 32"
[
"
$(
cpython_path 3.8 16
)
"
==
"/opt/python/cp38-cp38"
]
||
ingest
"cp 3.8 16"
\ No newline at end of file
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