Skip to content

Commit ec9d3fb

Browse files
Merge branch 'main' into aqua_deployment_tests
2 parents c0cfc87 + a98df6b commit ec9d3fb

File tree

10 files changed

+1390
-31
lines changed

10 files changed

+1390
-31
lines changed

ads/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
import fire
1111
from ads.common import logger
12-
from ads.aqua.cli import AquaCommand
1312

1413
try:
1514
import click
@@ -73,6 +72,8 @@ def _SeparateFlagArgs(args):
7372

7473
def cli():
7574
if len(sys.argv) > 1 and sys.argv[1] == "aqua":
75+
from ads.aqua.cli import AquaCommand
76+
7677
fire.Fire(AquaCommand, command=sys.argv[2:], name="ads aqua")
7778
else:
7879
click_cli()

docs/source/release_notes.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Release Notes
33
=============
44

5+
2.11.7
6+
------
7+
Release date: April 8, 2024
8+
9+
* Fixed bugs and introduced enhancements following our recent release, which included internal adjustments for future features and updates for the Jupyter Lab 3 upgrade.
10+
11+
512
2.11.6
613
------
714
Release date: April 3, 2024

pyproject.toml

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

2222
# Required
2323
name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below
24-
version = "2.11.6"
24+
version = "2.11.7"
2525

2626
# Optional
2727
description = "Oracle Accelerated Data Science SDK"

0 commit comments

Comments
 (0)