-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1b45b0
commit 849f0c7
Showing
2 changed files
with
1 addition
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ pycodestyle==2.3.1 | |
pyflakes==1.6.0 | ||
setuptools-scm==1.15.6 | ||
six | ||
tox==2.9.1 | ||
tox==2.9.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
from __future__ import absolute_import | ||
import os | ||
|
||
from .libtiledb import (Ctx, Config, Dim, Domain, Attr, KV, ArraySchema, DenseArray, SparseArray, | ||
TileDBError, VFS, array_consolidate, group_create, object_type, | ||
ls, walk, remove, move) | ||
|
||
__all__ = [Ctx, Config, Dim, Domain, Attr, KV, ArraySchema, SparseArray, TileDBError, VFS, | ||
array_consolidate, group_create, object_type, ls, walk, remove, move] | ||
|
||
if not os.environ.get("TILEDB_PY_NO_VERSION_CHECK"): | ||
major, minor, patch = libtiledb.version() | ||
if (major, minor) > (1, 2): | ||
raise RuntimeError("The libtiledb library version does not match " | ||
"the latest released version of tiledb 1.2.x") |