Bumped version to 0.2 0.2
authorW. Trevor King <wking@drexel.edu>
Wed, 17 Jun 2009 13:36:01 +0000 (09:36 -0400)
committerW. Trevor King <wking@drexel.edu>
Wed, 17 Jun 2009 13:36:01 +0000 (09:36 -0400)
pycomedi/common.py
setup.py

index 371422add0f41003ea6211f45eb1bcae17e64e18..ee4365dc2228034b5c9d8a657da02d1d30983c69 100644 (file)
@@ -18,7 +18,7 @@
 import comedi as c
 import time
 
-VERSION = 0.1
+VERSION = "0.2"
 
 class pycomediError (Exception) :
     "Error in pycomedi.common"
index a0f6da15f1b5e64a5ce84059c00f67659c52bf09..832f2ef365f846e644ec0b19a981fb7a438c2736 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -31,8 +31,8 @@ if version < '2.2.3':
     DistributionMetadata.classifiers = None
     DistributionMetadata.download_url = None
 
-import pycomedi
-VERSION = pycomedi.VERSION
+#from pycomedi import VERSION
+VERSION = "0.2" # importing pycomedi requires comedi on this machine, so copy.
 
 doclines = __doc__.split("\n")