Skip to content

Commit

Permalink
Merge branch 'master' into ETNA-792
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-hse-repository committed Sep 28, 2021
2 parents 8341bb7 + bb7059d commit 90c56ad
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 82 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- BinsegTrendTransform, ChangePointsTrendTransform ([#87](https://github.com/tinkoff-ai/etna-ts/pull/87))
- Interactive plot for anomalies (#[95](https://github.com/tinkoff-ai/etna-ts/pull/95))
- Examples to TSDataset methods with doctest ([#92](https://github.com/tinkoff-ai/etna-ts/pull/92))
- WandbLogger ([#71](https://github.com/tinkoff-ai/etna-ts/pull/71))
- Pipeline ([#78](https://github.com/tinkoff-ai/etna-ts/pull/78))
- 'is_weekend' feature in DateFlagsTransform ([#101](https://github.com/tinkoff-ai/etna-ts/pull/101))

### Changed
- SklearnTransform out column names ([#99](https://github.com/tinkoff-ai/etna-ts/pull/99))

### Fixed
- Add more obvious Exception Error for forecasting with unfitted model ([#102](https://github.com/tinkoff-ai/etna-ts/pull/102))

## [1.1.1] - 2021-09-23
### Fixed
- Documentation build workflow ([#85](https://github.com/tinkoff-ai/etna-ts/pull/85))

## [1.1.0] - 2021-09-23
### Added
Expand All @@ -26,9 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Pytorch-Forecasting models ([#29](https://github.com/tinkoff-ai/etna-ts/pull/29))
- SARIMAX model ([#10](https://github.com/tinkoff-ai/etna-ts/pull/10))
- Logging, including ConsoleLogger ([#46](https://github.com/tinkoff-ai/etna-ts/pull/46))
- WandbLogger ([#71](https://github.com/tinkoff-ai/etna-ts/pull/71))
- Correlation heatmap plotter ([#77](https://github.com/tinkoff-ai/etna-ts/pull/77))
- Pipeline ([#78](https://github.com/tinkoff-ai/etna-ts/pull/78))

### Changed
- Backtest is fully parallel
Expand All @@ -42,7 +46,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix working with 'cap' and 'floor' features in Prophet model ([#62](https://github.com/tinkoff-ai/etna-ts/pull/62)))
- Fix saving init params for SARIMAXModel ([#81](https://github.com/tinkoff-ai/etna-ts/pull/81))
- Imports of nn models, PytorchForecastingTransform and Transform ([#80](https://github.com/tinkoff-ai/etna-ts/pull/80)))
- Add more obvious Exception Error for forecasting with unfitted model ([#102](https://github.com/tinkoff-ai/etna-ts/pull/102))

## [1.0.0] - 2021-09-05
### Added
Expand Down
9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
SOURCE_PATH = Path(os.path.dirname(__file__)) # noqa # docs source
PROJECT_PATH = SOURCE_PATH.joinpath("../..") # noqa # project root

try:
"""try:
import git
repo = git.Repo(PROJECT_PATH)
COMMIT_SHORT_SHA = str(repo.active_branch.commit)[:8]
CI_COMMIT_BRANCH = str(repo.active_branch)
except:
COMMIT_SHORT_SHA = os.environ["CI_COMMIT_SHORT_SHA"]
CI_COMMIT_BRANCH = os.environ["CI_COMMIT_BRANCH"]
CI_COMMIT_BRANCH = os.environ["CI_COMMIT_BRANCH"]"""

sys.path.insert(0, str(PROJECT_PATH)) # noqa

Expand All @@ -46,10 +46,11 @@
with open(PROJECT_PATH / "pyproject.toml", "r") as f:
pyproject_toml = toml.load(f)

if CI_COMMIT_BRANCH == "master":
"""if CI_COMMIT_BRANCH == "master":
release = f"ID {COMMIT_SHORT_SHA}"
else:
release = pyproject_toml["tool"]["poetry"]["version"]
release = pyproject_toml["tool"]["poetry"]["version"]"""
release = pyproject_toml["tool"]["poetry"]["version"]


# -- General configuration ---------------------------------------------------
Expand Down
Empty file added docs/source/tutorials/.gitkeep
Empty file.
Loading

0 comments on commit 90c56ad

Please sign in to comment.