Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sdk/ml/azure-ai-ml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
### Bugs Fixed

### Other Changes
- Removed declaration on Python 3.6 support.
- Removed declaration on Python 3.6 support
- Added support for custom setup scripts on compute instances.
- Updated dependencies upper bounds to be major versions.

## 0.1.0b7 (In progress)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ComputeInstanceSchema(ComputeSchema):
state = fields.Str(dump_only=True)
last_operation = fields.Dict(keys=fields.Str(), values=fields.Str(), dump_only=True)
services = fields.List(fields.Dict(keys=fields.Str(), values=fields.Str()), dump_only=True)
schedules = ExperimentalField(NestedField(ComputeSchedulesSchema))
schedules = NestedField(ComputeSchedulesSchema)
identity = ExperimentalField(NestedField(IdentitySchema))
idle_time_before_shutdown = ExperimentalField(fields.Str())
setup_scripts = ExperimentalField(NestedField(SetupScriptsSchema))
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
from marshmallow import fields
from marshmallow.decorators import post_load

from azure.ai.ml._schema.core.fields import ArmVersionedStr, CodeField, LocalPathField, NestedField, UnionField
from azure.ai.ml._schema.core.fields import NestedField
from azure.ai.ml._schema.core.schema_meta import PatchedSchemaMeta
from azure.ai.ml.constants._common import LOCAL_PATH, AzureMLResourceType


class ScriptReferenceSchema(metaclass=PatchedSchemaMeta):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def _from_rest_object(cls, obj: RestComputeStartStopSchedule) -> "ComputeStartSt
return schedule


@experimental
class ComputeSchedules(RestTranslatableMixin):
"""Compute schedules.

Expand Down