Commit 03263771 authored by Matthew Brett's avatar Matthew Brett Committed by mattip
Browse files

Revert platform check (it's for any Python)

parent 9c7d0c01
...@@ -322,8 +322,8 @@ function pip_opts { ...@@ -322,8 +322,8 @@ function pip_opts {
function get_platform { function get_platform {
# Report platform as given by uname # Report platform as given by uname
check_python # Use any Python that comes to hand.
$PYTHON_EXE -c 'import platform; print(platform.uname()[4])' python -c 'import platform; print(platform.uname()[4])'
} }
if [ "$(get_platform)" == x86_64 ] || \ if [ "$(get_platform)" == x86_64 ] || \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment