From d74efc985270aaa2b3ab779408597d9505e9ea1d Mon Sep 17 00:00:00 2001 From: Ilya Matiach Date: Mon, 6 Dec 2021 12:38:41 -0500 Subject: [PATCH] fix interpret-text release version to be non-dev (#185) --- python/interpret_text/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/interpret_text/__init__.py b/python/interpret_text/__init__.py index ffc4bb80..061ad7fc 100644 --- a/python/interpret_text/__init__.py +++ b/python/interpret_text/__init__.py @@ -8,7 +8,7 @@ _patch = "3" __name__ = "interpret-text" -__version__ = "{}.{}.{}.dev10".format(_major, _minor, _patch) +__version__ = "{}.{}.{}".format(_major, _minor, _patch) # Only log to disk if environment variable specified interpret_text_logs = os.environ.get('INTERPRET_TEXT_LOGS')