Skip to content

Commit cd99f8f

Browse files
committed
Use NEST v3.3 and NEURON v8.1 for CI
1 parent 297a96b commit cd99f8f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ci/install_nest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
66
echo -e "\n========== Installing NEST ==========\n"
77
# Specify which version of NEST to install
88
#export NEST_VERSION="master"
9-
export NEST_VERSION="3.1"
9+
export NEST_VERSION="3.3"
1010

1111
pip install cython
1212

ci/install_neuron.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ set -e # stop execution in case of errors
44

55
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
66
echo -e "\n========== Installing NEURON ==========\n"
7-
export NRN_VERSION="nrn-8.0.0"
7+
export NRN_VERSION="nrn-8.1"
88
export VENV=`python -c "import sys; print(sys.prefix)"`
99

1010
if [ ! -f "$HOME/$NRN_VERSION/build/CMakeCache.txt" ]; then
1111
echo 'Cloning NEURON sources from GitHub'
12-
git clone https://github.com/neuronsimulator/nrn -b 8.0.0 $HOME/$NRN_VERSION
12+
git clone https://github.com/neuronsimulator/nrn -b release/8.1 $HOME/$NRN_VERSION
1313
mkdir -p $HOME/$NRN_VERSION/build
1414
else
1515
echo 'Using cached NEURON build directory.'

0 commit comments

Comments
 (0)