From 34c113016d8a4accb9859d8677a372e7e108a5b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Dupr=C3=A9?= Date: Wed, 30 Jun 2021 19:04:54 +0200 Subject: [PATCH] Fix version 1.9 --> 1.9.0 (#674) --- skl2onnx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skl2onnx/__init__.py b/skl2onnx/__init__.py index db12808af..09ffad98e 100644 --- a/skl2onnx/__init__.py +++ b/skl2onnx/__init__.py @@ -3,7 +3,7 @@ """ Main entry point to the converter from the *scikit-learn* to *onnx*. """ -__version__ = "1.9" +__version__ = "1.9.0" __author__ = "Microsoft" __producer__ = "skl2onnx" __producer_version__ = __version__