File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 2323 - EDEN
2424 - " NEST:2.20.0"
2525 - " NEST:3.3"
26- - PyNEST
26+ - PyNEST
27+ - PyNEST:2.20.0
28+ - PyNEST:3.1
2729 - " NEURON:7.8.2"
2830 - " PyNEURON:8.0.2"
2931 - PyNN
Original file line number Diff line number Diff line change 1- __version__ = '0.2.5 '
1+ __version__ = '0.2.6 '
Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ def install_nest(version):
2121 pypaths = get_paths ()
2222 inform ('Python lib info: %s' % (pypaths ), indent = 2 , verbosity = 1 )
2323
24- os .mkdir (nestpath )
24+ try :
25+ os .mkdir (nestpath )
26+ except :
27+ pass
2528
2629 with working_dir (nestpath ):
2730 #version='2.10.0'
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ def is_installed():
3030 ret_str = ret_str_cmd_line .split ('Version: ' )[1 ].split ('Built:' )[0 ].strip ()
3131 #print("ret_str: %s"%ret_str)
3232 except Exception as e :
33- print ('NEST exc: %s' % e )
33+ if is_verbose ():
34+ print ('NEST installed check exception: %s' % e )
3435 import nest
3536 #print('PN2')
3637 if hasattr (nest ,'__version__' ):
Original file line number Diff line number Diff line change 1919 'engines/utils/genesis_utils.g' ]},
2020 url = 'https://github.com/OpenSourceBrain/osb-model-validation' ,
2121 license = 'LICENSE.txt' ,
22- description = 'OpenSourceBrain Model Validation' ,
22+ description = 'Open Source Brain Model Validation framework ' ,
2323 long_description = open ('README.md' ).read (),
2424 install_requires = [
2525 'PyYAML' ,
You can’t perform that action at this time.
0 commit comments