In the newest version (pull request #491, which should be version 0.4.35) I can't record any currents of the channels since they are not included in the edges or nodes object. For other varibales which are included in the objects the recording works.
from jaxley.channels.hh import HH
comp = jx.Compartment()
branch = jx.Branch(comp, nseg=1)
cell = jx.Cell([branch], [-1])
cell.insert(HH())
cell.delete_recordings()
cell.record(HH().current_name)
s = jx.integrate(cell, delta_t=0.1, t_max=1000)

In the newest version (pull request #491, which should be version 0.4.35) I can't record any currents of the channels since they are not included in the edges or nodes object. For other varibales which are included in the objects the recording works.