Skip to content

Commit

Permalink
Test pynn 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed May 1, 2024
1 parent 41d1639 commit a945421
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: |
pip install .
pip install scipy sympy matplotlib cython pandas tables
pip install 'numpy<=1.23.0' # temp fix for https://levelup.gitconnected.com/fix-attributeerror-module-numpy-has-no-attribute-float-d7d68c5a4971
# pip install 'numpy<=1.23.0' # temp fix for https://levelup.gitconnected.com/fix-attributeerror-module-numpy-has-no-attribute-float-d7d68c5a4971
#sudo apt install octave
- name: Run OMV tests on engine ${{ matrix.engine }}
Expand Down
2 changes: 1 addition & 1 deletion omv/engines/getnest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def install_nest(version):
if not version:
version = "3.3"
version = "3.5"

inform("Installing NEST", indent=2, verbosity=1)
nestpath = os.path.join(os.environ["HOME"], "nest")
Expand Down
2 changes: 1 addition & 1 deletion omv/engines/getnrn.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def install_neuron(version):
if not version:
if sys.version_info.major == 3:
version = "8.1" # 8.1 works with pynn 0.10.1
version = "8.2.2" # for pynn 0.11.0
else:
version = "7.6"

Expand Down
2 changes: 1 addition & 1 deletion omv/engines/getpynn.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def install_pynn(version=None):
if not version:
version = "0.10.1"
version = "0.11.0"

try:
# pip_install('lazyarray') # This should ideally be automatically installed with PyNN...
Expand Down

0 comments on commit a945421

Please sign in to comment.