Skip to content

Commit 6e978ce

Browse files
committed
packaging
1 parent 1073641 commit 6e978ce

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<img src="https://img.shields.io/badge/python-v3-brightgreen.svg"
99
alt="python"></a> &nbsp;
1010
<a href="https://pypi.org/project/PyPortfolioOpt/">
11-
<img src="https://img.shields.io/badge/pypi-v1.4.0-brightgreen.svg"
11+
<img src="https://img.shields.io/badge/pypi-v1.4.1-brightgreen.svg"
1212
alt="pypi"></a> &nbsp;
1313
<a href="https://opensource.org/licenses/MIT">
1414
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"

docs/Roadmap.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ discuss. If you have any other feature requests, please raise them using GitHub
3131
for the suggestion).
3232
- Several bug fixes and test improvements (thanks to `Carl Peasnell <https://github.com/SeaPea1>`_).
3333

34+
1.4.1
35+
-----
36+
37+
- 100% test coverage
38+
- Reorganised docs; added FAQ page
39+
- Reorganised module structure to make it more scalable
40+
- Python 3.9 support, dockerfile versioning, misc packaging improvements (e.g cvxopt optional)
41+
3442

3543
1.3.0
3644
=====

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.4"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "1.4.0"
61+
release = "1.4.1"
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.4.0-brightgreen.svg"
18+
<img src="https://img.shields.io/badge/pypi-v1.4.1-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
@@ -10,7 +10,7 @@
1010
from .risk_models import CovarianceShrinkage
1111

1212

13-
__version__ = "1.4.0"
13+
__version__ = "1.4.1"
1414

1515
__all__ = [
1616
"market_implied_prior_returns",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="PyPortfolioOpt",
12-
version="1.4.0",
12+
version="1.4.1",
1313
description="Financial portfolio optimization in python",
1414
long_description=desc,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)