From 15d0cddb18d78597703e369d0b45d5574f07ae4a Mon Sep 17 00:00:00 2001 From: Andrew Davison Date: Tue, 19 Apr 2022 17:11:47 +0200 Subject: [PATCH 1/2] try to test pyNN.neuron on Windows --- .github/workflows/full-test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/full-test.yml b/.github/workflows/full-test.yml index 1e132a9e..080a4064 100644 --- a/.github/workflows/full-test.yml +++ b/.github/workflows/full-test.yml @@ -36,7 +36,6 @@ jobs: run: | python -m pip install brian2 - name: Install NEURON - if: startsWith(matrix.os, 'ubuntu') run: | python -m pip install neuron==8.2.4 python -m pip install "nrnutils>0.2.0" From 3b371616e299170efebd8c340592896e1f623813 Mon Sep 17 00:00:00 2001 From: Andrew Davison Date: Tue, 30 Apr 2024 13:20:52 +0200 Subject: [PATCH 2/2] seems to be case sensitive? --- .github/workflows/full-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/full-test.yml b/.github/workflows/full-test.yml index 080a4064..1100ff2b 100644 --- a/.github/workflows/full-test.yml +++ b/.github/workflows/full-test.yml @@ -37,7 +37,7 @@ jobs: python -m pip install brian2 - name: Install NEURON run: | - python -m pip install neuron==8.2.4 + python -m pip install NEURON==8.2.4 python -m pip install "nrnutils>0.2.0" - name: Install NEST if: startsWith(matrix.os, 'ubuntu')