Skip to content

Commit 7f49d7e

Browse files
authored
ADS release v2.8.7 (#237)
1 parent ea6a535 commit 7f49d7e

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/publish-to-readthedocs.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: "Publish Docs"
22

3-
on:
4-
# Auto-trigger this workflow on tag creation
5-
push:
6-
tags:
7-
- 'v*.*.*'
3+
# To run this workflow manually from the Actions tab
4+
on: workflow_dispatch
85

96
env:
107
RTDS_ADS_PROJECT: https://readthedocs.org/api/v3/projects/accelerated-data-science

ads/ads_version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "2.8.6"
2+
"version": "2.8.7"
33
}

docs/source/release_notes.rst

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

5+
2.8.7
6+
-----
7+
Release date: June 22, 2023
8+
9+
* Added support for leveraging pools in the Data Flow applications.
10+
* Added support for token-based authentication.
11+
* Revised help information for ``opctl`` commands.
12+
513
2.8.6
614
-----
715
Release date: June 13, 2023
@@ -14,7 +22,6 @@ Release date: June 13, 2023
1422
* Enabled the uploading of large size model artifacts for the :py:class:`~ads.model.ModelDeployment` class.
1523
* Implemented validation for shape name and shape configuration details in Data Science jobs and Data Flow applications.
1624
* Added the capability to create ``ADSDataset`` using the Pandas accessor.
17-
* Made ``Docker`` dependency optional for ``ads opctl run``.
1825
* Provided a prebuilt watch command for monitoring Data Science jobs with ``ads opctl``.
1926
* Eliminated the legacy ``ads.dataflow`` package from ADS.
2027

@@ -386,8 +393,8 @@ The following features related to the Data Labeling service were added:
386393
The following improvements were effected:
387394

388395
* Improve ads import time.
389-
* Fix the version of the `jsonschema` package.
390-
* Update `numpy` deps to >= 1.19.2 for compatibility with `TensorFlow 2.6`.
396+
* Fix the version of the ``jsonschema`` package.
397+
* Update ``numpy`` deps to >= 1.19.2 for compatibility with ``TensorFlow 2.6``.
391398
* Added progress bar when creating a Data Flow application.
392399
* Fixed the file upload path in Data Flow.
393400
* Added supporting tags when saving model artifacts to the model catalog.
@@ -451,7 +458,7 @@ Release notes: August 3, 2021
451458
This release of the model catalog includes these enhancements:
452459

453460
* Automatic extraction of model taxonomy metadata that lets data scientists document the use case, framework, and hyperparameters of their models.
454-
* Improvement to the model provenance metadata, including a reference to the model training resource (notebook sessions) by passing in the `training_id` to the `.save()` method.
461+
* Improvement to the model provenance metadata, including a reference to the model training resource (notebook sessions) by passing in the ``training_id`` to the ``.save()`` method.
455462
* Support for custom metadata which lets data scientists document the context around their models, automatic extraction references to the conda environment used to train the model, the training and validation datasets, and so on.
456463
* Automatcal extraction of the model input feature vector and prediction schemas.
457464
* Model introspection tests that are run on the model artifact before the model is saved to the model catalog. Model introspection validates the artifact against a series of common issues and errors found with artifacts. These introspection tests are part of the model artifact code template that is included.
@@ -568,10 +575,10 @@ January 13, 2021
568575
* Corrected the ``up_sample()`` method in ``get_recommendations()`` so that it does not fail when all features are categorical. Up-sampling is possible for datasets containing continuous and categorical features.
569576
* Resolved issues with serializing ``ndarray`` objects into JSON.
570577
* A table of all of the ADS notebook examples can be found in our service documentation: `Oracle Cloud Infrastructure Data Science <https://docs.cloud.oracle.com/en-us/iaas/data-science/using/use-notebook-sessions.htm#conda_understand_environments>`__
571-
* Changed `set_documentation_mode` to false by default.
578+
* Changed ``set_documentation_mode`` to false by default.
572579
* Added unit-tests related to the dataset helper.
573-
* Fixed the `_check_object_exists` to handle situations where the object storage bucket has more than 1000 objects.
574-
* Added option `overwrite_script` in the `create_app()` method to allow a user to override a pre-existing file.
580+
* Fixed the ``_check_object_exists`` to handle situations where the object storage bucket has more than 1000 objects.
581+
* Added option ``overwrite_script`` in the ``create_app()`` method to allow a user to override a pre-existing file.
575582
* Added support for newer fsspec versions.
576583
* Added support for the C library Snappy.
577584
* Fixed issue with uploading model provenance data due to inconsistency with OCI interface.

setup.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8; -*-
33

4-
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
4+
# Copyright (c) 2020, 2023 Oracle and/or its affiliates.
55
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
66

77
import sys
@@ -23,7 +23,7 @@
2323
"gitpython>=3.1.2",
2424
"matplotlib>=3.1.3",
2525
"numpy>=1.19.2",
26-
"oci>=2.102.0",
26+
"oci>=2.104.3",
2727
"ocifs>=1.1.3",
2828
"pandas>1.2.1,<1.6",
2929
"python_jsonschema_objects>=0.3.13",
@@ -170,9 +170,5 @@ def update_extra_with_internal_packages():
170170
"Github": "https://github.com/oracle/accelerated-data-science",
171171
"Documentation": "https://accelerated-data-science.readthedocs.io/en/latest/index.html",
172172
},
173-
entry_points={
174-
'console_scripts': [
175-
'ads=ads.cli:cli'
176-
]
177-
},
173+
entry_points={"console_scripts": ["ads=ads.cli:cli"]},
178174
)

0 commit comments

Comments
 (0)