Skip to content

Commit

Permalink
Merge branch 'main' into feature/multi-model-artifact-handler
Browse files Browse the repository at this point in the history
  • Loading branch information
YashPandit4u committed Jun 14, 2024
2 parents 4418bf8 + 289b7ae commit e2e7099
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/run-unittests-py38-cov-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ jobs:
fi
- name: "Add comment with cov diff to PR"
continue-on-error: true
uses: actions/github-script@v7
if: github.event_name == 'pull_request'
with:
Expand Down
10 changes: 9 additions & 1 deletion ads/aqua/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,15 @@ def get_config(self, model_id: str, config_file_name: str) -> Dict:
config_file_name=config_file_name,
)
except:
pass
# todo: temp fix for issue related to config load for byom models, update logic to choose the right path
try:
config_path = f"{artifact_path.rstrip('/')}/config/"
config = load_config(
config_path,
config_file_name=config_file_name,
)
except:
pass

if not config:
logger.error(
Expand Down
7 changes: 7 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Release Notes
=============

2.11.12
------
Release date: June 13, 2024

* Fixed bugs and introduced enhancements following our recent release.


2.11.11
------
Release date: June 11, 2024
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.11"
version = "2.11.12"

# Optional
description = "Oracle Accelerated Data Science SDK"
Expand Down

0 comments on commit e2e7099

Please sign in to comment.