Skip to content

Commit 0deb83c

Browse files
authored
Merge pull request #53 from cnrl/no-prime-fix
No prime fix
2 parents ffcef87 + 1c84f99 commit 0deb83c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

conex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from conex.behaviors import *
22
from conex.nn import *
33

4-
__version__ = "0.1.2"
4+
__version__ = "0.1.3"

conex/behaviors/neurons/dendrite.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
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
)

0 commit comments

Comments
 (0)