From d769f3f658feab0248da91a45a775f9cbae32aeb Mon Sep 17 00:00:00 2001 From: Romain Picard Date: Wed, 1 Mar 2023 18:51:31 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.0.0=20=E2=86=92=203.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- binder/requirements.txt | 2 +- ebm2onnx/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/binder/requirements.txt b/binder/requirements.txt index 6f9f938..b1251cf 100644 --- a/binder/requirements.txt +++ b/binder/requirements.txt @@ -1,4 +1,4 @@ -ebm2onnx==3.0.0 +ebm2onnx==3.1.0 numpy pandas onnxruntime diff --git a/ebm2onnx/__init__.py b/ebm2onnx/__init__.py index bb2e89c..fe8e00c 100644 --- a/ebm2onnx/__init__.py +++ b/ebm2onnx/__init__.py @@ -2,6 +2,6 @@ __author__ = """Romain Picard""" __email__ = 'romain.picard@softathome.com' -__version__ = '3.0.0' +__version__ = '3.1.0' from .convert import to_onnx, get_dtype_from_pandas diff --git a/pyproject.toml b/pyproject.toml index 531669f..37cd622 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ebm2onnx" -version = "3.0.0" +version = "3.1.0" description = "EBM model serialization to ONNX" readme = "README.rst" requires-python = ">=3.6" diff --git a/setup.cfg b/setup.cfg index c09f97d..582a141 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.1.0 commit = True tag = True