We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8376d3e commit 5a49966Copy full SHA for 5a49966
test.sh
@@ -8,9 +8,13 @@ PYTHON=$(which python)
8
# From here https://stackoverflow.com/a/40950971/1805129
9
PYTHON_VERSION=$(python -V 2>&1 | sed 's/.* \([0-9]\).\([0-9]\).*/\1\2/')
10
if [ "$PYTHON_VERSION" -eq "27" ]; then
11
+ $PYTHON -m pip uninstall matplotlib -y || echo "Failed to remove matplotlib"
12
$PYTHON -m pip install matplotlib==2.2.3 --upgrade
13
+ $PYTHON -m pip install scipy==1.1.0 --upgrade
14
else
15
16
$PYTHON -m pip install matplotlib --upgrade
17
+ $PYTHON -m pip install --upgrade
18
fi
19
20
$PYTHON -m pip install pymoose --pre --upgrade
0 commit comments