Skip to content

Commit

Permalink
version 0.4.9
Browse files Browse the repository at this point in the history
This revision fixes some bugs that were introduced while addressing
issue #106 (user provided data now gets sliced during a backtest
according to the trading universe at each point in time, since that
may change). Data-related errors are now more informative, and tell
the user whether data is missing at a certain point in time, some assets
are missing, or there are NaNs. We are mostly working on the
documentation now and are fixing inconsistencies between the book and
the code.
  • Loading branch information
enzbus committed Sep 7, 2023
1 parent abe3698 commit 6620525
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 @@
The __all__ attribute of each is used.
"""

__version__ = "0.4.8"
__version__ = "0.4.9"

from .simulator import *
from .policies 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 = '0.4.8'
release = '0.4.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='cvxportfolio',
version='0.4.8',
version='0.4.9',
author='Enzo Busseti, Stephen Boyd, Steven Diamond, BlackRock Inc.',
maintainer='Enzo Busseti',
author_email='[email protected]',
Expand Down

0 comments on commit 6620525

Please sign in to comment.