Skip to content

Commit 5521566

Browse files
committed
fix: EfficientFrontier class was not available
EfficientFrontier class was not available through __init__.py after refactoring.
1 parent 622411e commit 5521566

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img src="https://img.shields.io/badge/python-v3-brightgreen.svg"
55
alt="python"></a> &nbsp;
66
<a href="https://pypi.org/project/okama/">
7-
<img src="https://img.shields.io/badge/pypi-v0.93-brightgreen.svg"
7+
<img src="https://img.shields.io/badge/pypi-v0.94-brightgreen.svg"
88
alt="pypi"></a> &nbsp;
99
<a href="https://opensource.org/licenses/MIT">
1010
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"

okama/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
from okama.portfolio import Portfolio
2525
from okama.macro import Inflation, Rate
2626
from okama.frontier.multi_period import EfficientFrontierReb
27+
from okama.frontier.single_period import EfficientFrontier
2728
from okama.plots import Plots
2829
from okama.api.data_queries import QueryData
2930
from okama.api.search import search
@@ -32,4 +33,4 @@
3233
from okama.helpers import Float, Frame, Rebalance, Date
3334
import okama.settings
3435

35-
__version__ = '0.93'
36+
__version__ = '0.94'

0 commit comments

Comments
 (0)