Skip to content

Commit 1b8c96d

Browse files
authored
ODSC-55407 (#758)
2 parents eb60c81 + e23c200 commit 1b8c96d

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/run-operators-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: ["3.8", "3.10.8"]
34+
python-version: ["3.8"]
3535

3636
steps:
3737
- uses: actions/checkout@v4

ads/common/serializer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def from_dict(
464464
)
465465

466466
obj = cls(
467-
**{key: obj_dict.get(key) for key in allowed_fields if key in obj_dict}
467+
**{key: obj_dict.get(key) for key in allowed_fields}
468468
)
469469

470470
for key, value in obj_dict.items():

ads/opctl/operator/lowcode/forecast/environment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ dependencies:
1818
- optuna==3.1.0
1919
- oracle-automlx==23.4.1
2020
- oracle-automlx[forecasting]==23.4.1
21+
- fire

test-requirements-operators.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r test-requirements.txt
22
-e ".[forecast]"
33
-e ".[feature-store-marketplace]"
4-
darts
4+
darts>=0.28
55
plotly

0 commit comments

Comments
 (0)