Skip to content

Commit c5453b8

Browse files
committed
Fix version requirements
1 parent c09aae0 commit c5453b8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tools/scripts/check_julia

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${JULIA}" ]] && "${JULIA}" --version >/dev/null; then
2626
echo 'Julia is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download Julia version >= 0.4 (http://julialang.org/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download Julia version >= 0.5 (http://julialang.org/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

tools/scripts/check_python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${PYTHON}" ]] && "${PYTHON}" --version >/dev/null; then
2626
echo 'Python is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download Python version >= 2.7 (https://www.python.org/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download Python version 2.7 (https://www.python.org/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

tools/scripts/check_r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -x "${R}" ]] && "${R}" --version >/dev/null; then
2626
echo 'R is installed.' >&2
2727
exit 0
2828
else
29-
echo 'ERROR: missing dependency. Please download R version >= 3.0.0 (https://www.r-project.org/). Once installed, run the command again.' >&2
29+
echo 'ERROR: missing dependency. Please download R version >= 3.3.3 (https://www.r-project.org/). Once installed, run the command again.' >&2
3030
exit 1
3131
fi
3232

0 commit comments

Comments
 (0)