Skip to content

Commit 09d471a

Browse files
ADS release 2.9.0 (#436)
Co-authored-by: MING KANG <ming.kang@oracle.com>
1 parent 79722d0 commit 09d471a

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

.github/workflows/run-unittests-py38-cov-report.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ jobs:
6161
name: "Test env setup"
6262
timeout-minutes: 20
6363

64+
# Installing forecast deps for python3.8 test setup only, it will not work with python3.9/3.10, because
65+
# automlx do not support py3.9 and some versions of py3.10. This step omitted in -py39-py30.yml workflow
66+
- name: "Install Forecasting dependencies"
67+
run: |
68+
pip install -e ".[forecast]"
69+
6470
- name: "Run unitary tests folder with maximum ADS dependencies"
6571
timeout-minutes: 60
6672
shell: bash

.github/workflows/run-unittests-py39-py310.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
test-path: ["tests/unitary/with_extras tests/unitary/default_setup", "tests/unitary/with_extras/model"]
3737
include:
3838
- test-path: "tests/unitary/with_extras tests/unitary/default_setup"
39-
ignore-path: "--ignore tests/unitary/with_extras/model --ignore tests/unitary/with_extras/feature_store"
39+
ignore-path: "--ignore tests/unitary/with_extras/model --ignore tests/unitary/with_extras/feature_store --ignore tests/unitary/with_extras/operator/forecast"
4040
name: "unitary"
4141
- test-path: "tests/unitary/with_extras/model"
4242
name: "model"

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r test-requirements.txt
2-
-e ".[bds,data,geo,huggingface,notebook,onnx,opctl,optuna,spark,tensorflow,text,torch,viz,forecast,pii]"
2+
-e ".[bds,data,geo,huggingface,notebook,onnx,opctl,optuna,pii,spark,tensorflow,text,torch,viz]"
33
arff
44
category_encoders
55
dask

docs/source/release_notes.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Release Notes
33
=============
44

5+
2.9.0
6+
-----
7+
Release date: November 16, 2023
8+
9+
* Introducing AI Forecast Operator. Learn more about Operators in the "Operators" section of the :doc:`docs <./user_guide/operators/index>`.
10+
* Introducing PII Operator which aims to detect and redact Personal Identifiable Information in data.
11+
* Fixed a bug with the ``opctl conda create`` and ``opctl conda publish`` commands to ensure functionality on M1 and M2 local machines.
12+
* Fixed a bug with failed model deployment return value.
13+
* Fixed a bug when sorting logs for jobs and model deployment.
14+
515
2.8.11
616
------
717
Release date: October 18, 2023
@@ -138,7 +148,7 @@ Release date: January 25, 2023
138148

139149
2.7.3
140150
-----
141-
Release date: January 18, 2023
151+
Release date: January 18, 2023
142152

143153
* Added support for the :doc:`model version set <./user_guide/model_registration/model_version_set>` feature.
144154
* Added ``--job-info`` option to ``ads opctl run`` CLI to save job run information to a YAML file.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build-backend = "flit_core.buildapi"
1919

2020
# Required
2121
name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below
22-
version = "2.9.0rc1"
22+
version = "2.9.0"
2323

2424
# Optional
2525
description = "Oracle Accelerated Data Science SDK"

0 commit comments

Comments
 (0)