File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed
Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 6666 run : |
6767 pip install .
6868 pip install scipy sympy matplotlib cython pandas tables
69- pip install 'numpy<=1.23.0' # temp fix for https://levelup.gitconnected.com/fix-attributeerror-module-numpy-has-no-attribute-float-d7d68c5a4971
7069 #sudo apt install octave
7170
7271 - name : Run OMV tests on engine ${{ matrix.engine }}
Original file line number Diff line number Diff line change 88
99def install_nest (version ):
1010 if not version :
11- version = "3.3 "
11+ version = "3.5 "
1212
1313 inform ("Installing NEST" , indent = 2 , verbosity = 1 )
1414 nestpath = os .path .join (os .environ ["HOME" ], "nest" )
Original file line number Diff line number Diff line change 1111def install_neuron (version ):
1212 if not version :
1313 if sys .version_info .major == 3 :
14- version = "8.1 " # 8.1 works with pynn 0.10.1
14+ version = "8.2.2 " # for pynn 0.11.0
1515 else :
1616 version = "7.6"
1717
Original file line number Diff line number Diff line change 77
88def install_pynn (version = None ):
99 if not version :
10- version = "0.10.1 "
10+ version = "0.11.0 "
1111
1212 try :
1313 # pip_install('lazyarray') # This should ideally be automatically installed with PyNN...
1414 # pip_install('neo>=0.11.0') # This should ideally be automatically installed with PyNN...
1515
16+ pip_install ("pynn" , version )
17+ import pyNN
18+ '''
1619 install_root = os.environ["HOME"]
1720
1821 pyNN_src = "PyNN_src"
@@ -33,6 +36,7 @@ def install_pynn(version=None):
3336 print(check_output(["pwd"]))
3437 print("Finished attempting to install PyNN")
3538 # import pyNN
39+ '''
3640 m = "Successfully installed pyNN..."
3741 except Exception as e :
3842 m = "ERROR during install_pynn: %s" % e
Original file line number Diff line number Diff line change 11[metadata]
22name = OSBModelValidation
3- version = 0.2.22
3+ version = 0.3.1
44author = Boris Marin, Padraig Gleeson
5566url = https://github.com/OpenSourceBrain/osb-model-validation
@@ -24,7 +24,7 @@ classifiers=
2424[options]
2525install_requires =
2626 PyYAML
27- numpy
27+ numpy<2.0.0 # Due to other packages (e.g. tables) not working yet with numpy v2
2828 pyrx
2929 pathlib; python_version<'3.4'
3030 docopt
You can’t perform that action at this time.
0 commit comments