Skip to content

Commit

Permalink
Merge pull request #166 from realratchet/master
Browse files Browse the repository at this point in the history
disable nimporter by default
  • Loading branch information
realratchet authored May 10, 2024
2 parents 2d0ecae + f016077 commit 60d36fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tablite/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Config(object):
multiprocessing is used.
"""

USE_NIMPORTER = os.environ.get("USE_NIMPORTER", "true").lower() in ["1","t","true","y","yes"]
USE_NIMPORTER = os.environ.get("USE_NIMPORTER", "false").lower() in ["1","t","true","y","yes"]
ALLOW_CSV_READER_FALLTHROUGH = os.environ.get("ALLOW_CSV_READER_FALLTHROUGH", "true").lower() in ["1", "t", "true", "y", "yes"]

NIM_SUPPORTED_CONV_TYPES = ["Windows-1252", "ISO-8859-1"]
Expand Down
2 changes: 1 addition & 1 deletion tablite/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major, minor, patch = 2023, 11, 5
major, minor, patch = 2023, 11, 6
__version_info__ = (major, minor, patch)
__version__ = ".".join(str(i) for i in __version_info__)

0 comments on commit 60d36fa

Please sign in to comment.