Skip to content

Commit 9e1d9a7

Browse files
committed
versioning
1 parent 94aa7cb commit 9e1d9a7

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<img src="https://img.shields.io/badge/Platforms-linux--64,win--64,osx--64-orange.svg?style=flat-square"
1212
alt="platforms"></a> &nbsp;
1313
<a href="https://pypi.org/project/PyPortfolioOpt/">
14-
<img src="https://img.shields.io/badge/pypi-v1.5.4-brightgreen.svg"
14+
<img src="https://img.shields.io/badge/pypi-v1.5.5-brightgreen.svg"
1515
alt="pypi"></a> &nbsp;
1616
<a href="https://opensource.org/licenses/MIT">
1717
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"
@@ -43,6 +43,8 @@ in a risk-efficient way.
4343

4444
**PyPortfolioOpt has been [published](https://joss.theoj.org/papers/10.21105/joss.03066) in the Journal of Open Source Software 🎉**
4545

46+
PyPortfolioOpt is now being maintained by [Tuan Tran](https://github.com/88d52bdba0366127fffca9dfa93895).
47+
4648
Head over to the **[documentation on ReadTheDocs](https://pyportfolioopt.readthedocs.io/en/latest/)** to get an in-depth look at the project, or check out the [cookbook](https://github.com/robertmartin8/PyPortfolioOpt/tree/master/cookbook) to see some examples showing the full process from downloading data to building a portfolio.
4749

4850
<center>
@@ -85,7 +87,7 @@ This project is available on PyPI, meaning that you can just:
8587
pip install PyPortfolioOpt
8688
```
8789

88-
(you may need to follow separate installation instructions for [cvxopt](https://cvxopt.org/install/index.html#) and [cvxpy](https://www.cvxpy.org/install/))).
90+
(you may need to follow separate installation instructions for [cvxopt](https://cvxopt.org/install/index.html#) and [cvxpy](https://www.cvxpy.org/install/)).
8991

9092
However, it is best practice to use a dependency manager within a virtual environment.
9193
My current recommendation is to get yourself set up with [poetry](https://github.com/sdispater/poetry) then just run
@@ -423,6 +425,7 @@ Contributions are _most welcome_. Have a look at the [Contribution Guide](https:
423425
I'd like to thank all of the people who have contributed to PyPortfolioOpt since its release in 2018.
424426
Special shout-outs to:
425427

428+
- Tuan Tran (who is now the primary maintainer!)
426429
- Philipp Schiele
427430
- Carl Peasnell
428431
- Felipe Schneider

docs/Roadmap.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ Minor bug fixes
4343
- Fixed ``cvxpy`` deprecating deepcopy. Thanks to Philipp for the fix!
4444
- Several other tiny checks and bug fixes. Cheers to everyone for the PRs!
4545

46+
1.5.5
47+
-----
48+
49+
- `Tuan Tran <https://github.com/88d52bdba0366127fffca9dfa93895>`_ is now the primary maintainer for PyPortfolioOpt
50+
- Wide range of bug fixes and code improvements.
51+
52+
4653
1.4.0
4754
=====
4855

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = "1.5"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "1.5.4"
61+
release = "1.5.5"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<img src="https://img.shields.io/badge/python-v3-brightgreen.svg"
1616
alt="python"></a> &nbsp;
1717
<a href="https://pypi.org/project/PyPortfolioOpt/">
18-
<img src="https://img.shields.io/badge/pypi-v1.5.4-brightgreen.svg"
18+
<img src="https://img.shields.io/badge/pypi-v1.5.5-brightgreen.svg"
1919
alt="python"></a> &nbsp;
2020
<a href="https://opensource.org/licenses/MIT">
2121
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"

pypfopt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .hierarchical_portfolio import HRPOpt
1515
from .risk_models import CovarianceShrinkage
1616

17-
__version__ = "1.5.4"
17+
__version__ = "1.5.5"
1818

1919
__all__ = [
2020
"market_implied_prior_returns",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if __name__ == "__main__":
1111
setuptools.setup(
1212
name="pyportfolioopt",
13-
version="1.5.4",
13+
version="1.5.5",
1414
description="Financial portfolio optimization in python",
1515
long_description=desc,
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)