Changeset 10 for trunk/__init__.py
- Timestamp:
- 05/03/07 19:31:26 (6 years ago)
- Files:
-
- 1 modified
-
trunk/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/__init__.py
r2 r10 2 2 3 3 def check_pytables_version(): 4 v = [int(s) for s in __version__.split('.')]5 if v[0] < 1 or (v[0] == 1 and v[1] < 4):4 #v = [int(s) for s in __version__.split('.')] 5 if __version__<= 2: #1.4: #v[0] < 1 or (v[0] == 1 and v[1] < 4): 6 6 raise Exception("PyTables version must be >= 1.4, installed version is %s" % __version__) 7 7 check_pytables_version()
