diff --git a/HISTORY.rst b/HISTORY.rst index 1fd59043a..2ec50652e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,13 +5,19 @@ History ======= -current - 2020-05-20 - 0.00Mb +current - 2020-06-04 - 0.00Mb ============================= +* `117`: Support for op_version in onnx grammar (2020-06-04) +* `123`: Enables opset 12 (ONNX) (2020-06-04) + +0.3.1108 - 2020-05-20 - 0.29Mb +============================== + * `126`: Fix xgboost converter for xgboost >= 1.0 (2020-05-18) * `125`: Refactor rewritten sklearn operators (2020-05-18) -* `122`: Captures C output when calling dump_data_and_model (2020-05-16) * `124`: Fixes #122, capture standard C ouptput with dump_data_model, first step for #123 (2020-05-16) +* `122`: Captures C output when calling dump_data_and_model (2020-05-16) 0.3.1082 - 2020-05-01 - 2.84Mb ============================== diff --git a/appveyor.yml b/appveyor.yml index 84fab07dd..e2d441923 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,9 +19,8 @@ install: - "%PYTHON%\\python -m pip install --upgrade pip" - "%PYTHON%\\Scripts\\pip install -r requirements_conda.txt" - "%PYTHON%\\Scripts\\pip install pymyinstall" - - "%PYTHON%\\Scripts\\pymy_install3 xgboost lightgbm" - "%PYTHON%\\Scripts\\pip install -r requirements.txt" - - "%PYTHON%\\Scripts\\pip install -i https://test.pypi.org/simple/ ort-nightly" + - "%PYTHON%\\Scripts\\pip install onnxruntime>=1.3.0" - "%PYTHON%\\Scripts\\pymy_install3 --task=tool --source=zip graphviz" - "set PATH=%PATH%;C:\\projects\\mlprodict\\build\\update_modules\\Graphviz\\bin" build: off diff --git a/mlprodict/__init__.py b/mlprodict/__init__.py index acc7eca41..a68cf756e 100644 --- a/mlprodict/__init__.py +++ b/mlprodict/__init__.py @@ -4,7 +4,7 @@ @brief Ways to speed up predictions for a machine learned model. """ -__version__ = "0.3.1127" +__version__ = "0.3.1128" __author__ = "Xavier Dupré"