From bc77cce5a5d0c6ca004e8c7b190ef3e4b049c486 Mon Sep 17 00:00:00 2001 From: alexbrillant Date: Sat, 11 Jul 2020 13:40:09 -0400 Subject: [PATCH 1/2] Fix Warnings Warn exception --- neuraxle/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neuraxle/base.py b/neuraxle/base.py index 1ab5d538..986e7379 100644 --- a/neuraxle/base.py +++ b/neuraxle/base.py @@ -1849,7 +1849,7 @@ def mutate(self, new_method="inverse_transform", method_to_assign_to="transform" except AttributeError as e: if warn: import warnings - warnings.warn(e) + warnings.warn(repr(e)) return new_base_step From a5ff11ae0140ff525bf700e308a2cfaa6790754e Mon Sep 17 00:00:00 2001 From: alexbrillant Date: Sat, 11 Jul 2020 13:43:01 -0400 Subject: [PATCH 2/2] Bump Version 0.5.1 --- neuraxle/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neuraxle/__init__.py b/neuraxle/__init__.py index 3d187266..dd9b22cc 100644 --- a/neuraxle/__init__.py +++ b/neuraxle/__init__.py @@ -1 +1 @@ -__version__ = "0.5.0" +__version__ = "0.5.1"