Changeset 10 for trunk/__init__.py

Show
Ignore:
Timestamp:
05/03/07 19:31:26 (6 years ago)
Author:
LaurentPerrinet
Message:

going to pytables2 to allow running on x64

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/__init__.py

    r2 r10  
    22 
    33def 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): 
    66       raise Exception("PyTables version must be >= 1.4, installed version is %s" % __version__) 
    77check_pytables_version()