From ad0fadea44a97578ff868b8ae1b1c7ef6cb11ea6 Mon Sep 17 00:00:00 2001 From: Vipul Date: Tue, 18 Jun 2024 09:24:09 -0700 Subject: [PATCH 1/2] release v2.11.13 --- docs/source/release_notes.rst | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 6f6674823..b1eb3775d 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,6 +2,14 @@ Release Notes ============= +2.11.13 +------ +Release date: June 18, 2024 + +* Update langchain dependencies. +* Support adding and removing artifact in a multi-model setting for model created by reference. + + 2.11.12 ------ Release date: June 13, 2024 diff --git a/pyproject.toml b/pyproject.toml index 76b411785..d5d5ce933 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi" # Required name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below -version = "2.11.12" +version = "2.11.13" # Optional description = "Oracle Accelerated Data Science SDK" From e8f4b995d15698716ed467ef662f618b78f38752 Mon Sep 17 00:00:00 2001 From: Vipul Date: Tue, 18 Jun 2024 11:09:00 -0700 Subject: [PATCH 2/2] restrict numpy to stable version --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d5d5ce933..528a86ee0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ dependencies = [ "gitpython>=3.1.2", "jinja2>=2.11.2", "matplotlib>=3.1.3, <=3.8.4", - "numpy>=1.19.2", + "numpy>=1.19.2, <2.0.0", "oci>=2.125.3", "ocifs>=1.1.3", "pandas>1.2.1; python_version<'3.9'", # starting pandas v2.1.0 requires-python = '>=3.9' @@ -140,7 +140,7 @@ forecast = [ "autots[additional]", "mlforecast", "neuralprophet>=0.7.0", - "numpy", + "numpy<2.0.0", "oci-cli", "optuna", "oracle-ads",