File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11from conex .behaviors import *
22from conex .nn import *
33
4- __version__ = "0.1.2 "
4+ __version__ = "0.1.3 "
Original file line number Diff line number Diff line change @@ -194,5 +194,7 @@ def forward(self, neurons):
194194 )
195195
196196 neurons .I += neurons .I_proximal + (
197- (non_priming_apical + non_priming_distal ) / getattr (neurons , "R" , 1 )
197+ getattr (neurons , "tau" , 1 )
198+ * (non_priming_apical + non_priming_distal )
199+ / getattr (neurons , "R" , 1 )
198200 )
Original file line number Diff line number Diff line change 3535 include_package_data = True ,
3636 keywords = "CNRL-CoNeX" ,
3737 name = "CNRL-CoNeX" ,
38- packages = [ " conex" ] ,
38+ packages = find_packages ( include = [ ' conex' , 'conex.*' ]) ,
3939 test_suite = "tests" ,
4040 tests_require = test_requirements ,
4141 url = "https://github.com/cnrl/CoNeX" ,
42- version = "0.1.2 " ,
42+ version = "0.1.3 " ,
4343 zip_safe = False ,
4444)
You can’t perform that action at this time.
0 commit comments