Skip to content

Commit 60d36fa

Browse files
authored
Merge pull request #166 from realratchet/master
disable nimporter by default
2 parents 2d0ecae + f016077 commit 60d36fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tablite/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Config(object):
3636
multiprocessing is used.
3737
"""
3838

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

4242
NIM_SUPPORTED_CONV_TYPES = ["Windows-1252", "ISO-8859-1"]

tablite/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
major, minor, patch = 2023, 11, 5
1+
major, minor, patch = 2023, 11, 6
22
__version_info__ = (major, minor, patch)
33
__version__ = ".".join(str(i) for i in __version_info__)

0 commit comments

Comments
 (0)