diff --git a/src/python/nimbusml/__init__.py b/src/python/nimbusml/__init__.py index f8407a64..249155ed 100644 --- a/src/python/nimbusml/__init__.py +++ b/src/python/nimbusml/__init__.py @@ -2,7 +2,7 @@ Microsoft Machine Learning for Python """ -__version__ = '1.0.1' +__version__ = '1.0.2' # CoreCLR version of MicrosoftML is built on Windows. # But file permissions are not preserved when it's copied to Linux. diff --git a/src/python/nimbusml/internal/utils/data_schema.py b/src/python/nimbusml/internal/utils/data_schema.py index a7425267..51ff5c82 100644 --- a/src/python/nimbusml/internal/utils/data_schema.py +++ b/src/python/nimbusml/internal/utils/data_schema.py @@ -470,7 +470,7 @@ def format_options(self, add_sep=False): opts = opts.copy() opts['sep'] = DataSchema._default_options['sep'] - val = [] + val = ['quote+'] for k, v in sorted(opts.items()): if isinstance(v, bool): v = "+" if v else '-' diff --git a/src/python/setup.py b/src/python/setup.py index 99d69118..60979dd7 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -45,7 +45,7 @@ # Versions should comply with PEP440. For a discussion on # single-sourcing the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1.0.1', + version='1.0.2', description='NimbusML', long_description=long_description, diff --git a/version.txt b/version.txt index 7f207341..e6d5cb83 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.1 \ No newline at end of file +1.0.2 \ No newline at end of file