Skip to content

Commit

Permalink
fix: EfficientFrontier class was not available
Browse files Browse the repository at this point in the history
EfficientFrontier class was not available through __init__.py after refactoring.
  • Loading branch information
chilango74 committed Jan 20, 2021
1 parent 622411e commit 5521566
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img src="https://img.shields.io/badge/python-v3-brightgreen.svg"
alt="python"></a> &nbsp;
<a href="https://pypi.org/project/okama/">
<img src="https://img.shields.io/badge/pypi-v0.93-brightgreen.svg"
<img src="https://img.shields.io/badge/pypi-v0.94-brightgreen.svg"
alt="pypi"></a> &nbsp;
<a href="https://opensource.org/licenses/MIT">
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"
Expand Down
3 changes: 2 additions & 1 deletion okama/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from okama.portfolio import Portfolio
from okama.macro import Inflation, Rate
from okama.frontier.multi_period import EfficientFrontierReb
from okama.frontier.single_period import EfficientFrontier
from okama.plots import Plots
from okama.api.data_queries import QueryData
from okama.api.search import search
Expand All @@ -32,4 +33,4 @@
from okama.helpers import Float, Frame, Rebalance, Date
import okama.settings

__version__ = '0.93'
__version__ = '0.94'

0 comments on commit 5521566

Please sign in to comment.