Skip to content

Commit 304e667

Browse files
author
Matthew Emmett
committed
Rename hdf52 to hdf5ea, basic functionality works now.
Use PyTables EArrays instead of Tables so that large data vectors work.
1 parent 7591091 commit 304e667

File tree

2 files changed

+116
-217
lines changed

2 files changed

+116
-217
lines changed

pymc/database/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
3333
"""
3434

35-
__modules__ = ['no_trace', 'txt', 'ram', 'pickle', 'sqlite', 'hdf5', 'hdf52', "__test_import__"]
35+
__modules__ = ['no_trace', 'txt', 'ram', 'pickle', 'sqlite', 'hdf5', 'hdf5ea', "__test_import__"]
3636

3737
from . import no_trace
3838
from . import txt
@@ -50,7 +50,7 @@
5050
pass
5151

5252
try:
53-
from . import hdf52
53+
from . import hdf5ea
5454
except ImportError:
5555
pass
5656

0 commit comments

Comments
 (0)