Skip to content

Commit

Permalink
apply geni changes
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenzatto committed Sep 11, 2021
1 parent 1163117 commit dc7dd92
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.4
current_version = 0.9.5
tag = False

[bumpversion:file:soam/__init__.py]
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.5- 2021-09-10]

### Added
- Backtesting notebook example.

## [0.9.4- 2021-08-17]

### Added
Expand Down
236 changes: 236 additions & 0 deletions notebook/examples/backtesting_example.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion soam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version."""

__version__ = '0.9.4'
__version__ = '0.9.5'
2 changes: 1 addition & 1 deletion soam/workflow/backtester.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def __init__(
# self.state_handlers.append(saver.save_step)

if preprocessor is None:
preprocessor = DummyDataFrameTransformer()
preprocessor = Transformer(DummyDataFrameTransformer())

self.forecaster = forecaster
self.preprocessor = preprocessor
Expand Down

0 comments on commit dc7dd92

Please sign in to comment.