mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 03:02:56 +08:00
c33d6662ce
There are several reasons for this: * We no longer support python2 * There should be only 1 way of installing Modin * Issue management on these wheels * I have never heard of anyone using this feature * It is rarely kept up to date * Modin depends on specific versions of Ray because of past API changes
29 lines
540 B
Bash
Executable File
29 lines
540 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# Cause the script to exit if a single command fails.
|
|
set -e
|
|
|
|
TP_SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
TP_DIR=$TP_SCRIPT_DIR/..
|
|
|
|
mkdir -p $TP_DIR/build
|
|
mkdir -p $TP_DIR/pkg
|
|
|
|
if [[ -z "$1" ]]; then
|
|
PYTHON_EXECUTABLE=`which python`
|
|
else
|
|
PYTHON_EXECUTABLE=$1
|
|
fi
|
|
echo "Using Python executable $PYTHON_EXECUTABLE."
|
|
|
|
if [[ "$RAY_BUILD_JAVA" == "YES" ]]; then
|
|
echo "Java library will be built."
|
|
fi
|
|
if [[ "$RAY_BUILD_PYTHON" == "YES" ]]; then
|
|
echo "Python library will be built."
|
|
fi
|
|
|
|
unamestr="$(uname)"
|