We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2cdac6 commit 8ecde8cCopy full SHA for 8ecde8c
1 file changed
test.sh
@@ -5,6 +5,14 @@ set -e
5
# virtualenv does not require --user
6
PYTHON=$(which python)
7
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 [ "$ver" -eq "27" ]; then
11
+ $PYTHON -m pip install matplotlib==2.3 --upgrade
12
+else
13
+ $PYTHON -m pip install matplotlib --upgrade
14
+fi
15
+
16
$PYTHON -m pip install pymoose --pre --upgrade
17
$PYTHON -m pip install pylint numpy --upgrade
18
0 commit comments