Skip to content

Commit

Permalink
version 1.0.3
Browse files Browse the repository at this point in the history
This revision contains minor bug fixes and improvements
of the code quality (the total pylint score is now 9.7).

We now support Python 3.12.

Some aliases have been added to reflect names that were
defined in the original paper and had been changed recently.
We will in the coming weeks restore the original examples.

The documentation is growing and we have now exposed the core
internal classes through it.

Better error checks have been added, addressing GH issue #115
(when the provided returns are shorter than min_history, and
there can be no back-test, a clear error is now thrown).
The min_history parameter is now also an argument of
MarketSimulator (was only of the MarketData servers before).
  • Loading branch information
enzbus committed Nov 28, 2023
1 parent 7300027 commit 02c7680
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cvxportfolio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
modules. The __all__ attribute of each is used.
"""

__version__ = "1.0.2"
__version__ = "1.0.3"

from .constraints import *
from .costs import *
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
author = 'The Cvxportfolio Authors'

# The full version, including alpha/beta/rc tags
release = "1.0.2"
release = "1.0.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cvxportfolio"
version = "1.0.2"
version = "1.0.3"
description = "Portfolio optimization and back-testing."
readme = "README.md"
license = {text = "Apache License (2.0)"}
Expand Down

0 comments on commit 02c7680

Please sign in to comment.