Changes since 0.8:
* Use generators, now that Cython supports them
* Don't use: from pycomedi cimport module as _module
* Use relative imports (or absolute imports for cimport)
These changes fix a:
pycomedi ImportError: No module named chanspec
error reported by Lukas <dwisuu@gmail.com> [1].
[1]: id:
51e4fc1f-b367-4a69-a59b-
39adf383a961@googlegroups.com
https://groups.google.com/forum/#!topic/comedi_list/5qo3u_Qjx2Q
import logging as _logging
-__version__ = '0.8'
+__version__ = '0.9'
LOG = _logging.getLogger('pycomedi')