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
fcb76a0d
"vscode:/vscode.git/clone" did not exist on "35509ff5dee2035de8ade3372a6e1bc2d032d4e7"
Commit
fcb76a0d
authored
Oct 20, 2018
by
Hugo
Browse files
Drop support for EOL Python 3.3
parent
62445330
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
manylinux_utils.sh
manylinux_utils.sh
+2
-2
osx_utils.sh
osx_utils.sh
+1
-6
No files found.
manylinux_utils.sh
View file @
fcb76a0d
...
...
@@ -23,8 +23,8 @@ function cpython_path {
local
u_suff
=
u
# Back-compatibility
if
[
"
$u_width
"
==
"u"
]
;
then
u_width
=
32
;
fi
# For Python >= 3.
3
, "u" suffix not meaningful
if
[
$(
lex_ver
$py_ver
)
-ge
$(
lex_ver 3.
3
)
]
||
# For Python >= 3.
4
, "u" suffix not meaningful
if
[
$(
lex_ver
$py_ver
)
-ge
$(
lex_ver 3.
4
)
]
||
[
"
$u_width
"
==
"16"
]
;
then
u_suff
=
""
elif
[
"
$u_width
"
!=
"32"
]
;
then
...
...
osx_utils.sh
View file @
fcb76a0d
...
...
@@ -198,12 +198,7 @@ function install_pip {
mkdir
-p
$DOWNLOADS_SDIR
local
py_mm
=
`
get_py_mm
`
local
get_pip_path
=
$DOWNLOADS_SDIR
/get-pip.py
# pip 18.0 dropped support for Python 3.3
if
[
"
$py_mm
"
==
"3.3"
]
;
then
curl https://bootstrap.pypa.io/3.3/get-pip.py
>
$get_pip_path
else
curl
$GET_PIP_URL
>
$get_pip_path
fi
curl
$GET_PIP_URL
>
$get_pip_path
# Python 2.6 will fail SSL check
if
[
"
$py_mm
"
==
"2.6"
]
;
then
local
pip_args
=
"--trusted-host=pypi.org"
...
...
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