From: W. Trevor King Date: Mon, 19 Jan 2015 00:52:32 +0000 (-0800) Subject: Bump to version 0.9 X-Git-Tag: 0.9^0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=151be8538ada1768e0b005e0acc2caaca883b765;p=pycomedi.git Bump to version 0.9 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 [1]. [1]: id:51e4fc1f-b367-4a69-a59b-39adf383a961@googlegroups.com https://groups.google.com/forum/#!topic/comedi_list/5qo3u_Qjx2Q --- diff --git a/pycomedi/__init__.py b/pycomedi/__init__.py index cca3bc6..0ef4306 100644 --- a/pycomedi/__init__.py +++ b/pycomedi/__init__.py @@ -19,7 +19,7 @@ import logging as _logging -__version__ = '0.8' +__version__ = '0.9' LOG = _logging.getLogger('pycomedi')