From 151be8538ada1768e0b005e0acc2caaca883b765 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 18 Jan 2015 16:52:32 -0800 Subject: [PATCH] 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 --- pycomedi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') -- 2.26.2