From efa1c69a6c2540f4ce068c50803d7f62db8a6eb3 Mon Sep 17 00:00:00 2001 From: martins0n <33594071+martins0n@users.noreply.github.com> Date: Fri, 19 Aug 2022 11:26:40 +0300 Subject: [PATCH 1/2] FIX: typeddict import bug --- etna/models/nn/rnn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etna/models/nn/rnn.py b/etna/models/nn/rnn.py index 61c322606..3b72324f7 100644 --- a/etna/models/nn/rnn.py +++ b/etna/models/nn/rnn.py @@ -2,10 +2,10 @@ from typing import Dict from typing import Iterator from typing import Optional -from typing import TypedDict import numpy as np import pandas as pd +from typing_extensions import TypedDict from etna import SETTINGS From 17544260a3ab7206d294e39d5819fd793af7a261 Mon Sep 17 00:00:00 2001 From: martins0n <33594071+martins0n@users.noreply.github.com> Date: Fri, 19 Aug 2022 11:28:34 +0300 Subject: [PATCH 2/2] FIX: changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d561fb4..5a5f8f628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,7 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - Fix behavior of SARIMAXModel if simple_differencing=True is set ([#837](https://github.com/tinkoff-ai/etna/pull/837)) - -- +- Bug python3.7 and TypedDict import ([867](https://github.com/tinkoff-ai/etna/pull/867)) - - ProphetModel doesn't work with cap and floor regressors ([#842](https://github.com/tinkoff-ai/etna/pull/842)) - Fix problem with encoding category types in OHE ([#843](https://github.com/tinkoff-ai/etna/pull/843))