Skip to content

Commit

Permalink
Version 0.4 (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
open-risk committed Feb 21, 2022
1 parent 19453e4 commit 8c5a077
Show file tree
Hide file tree
Showing 46 changed files with 516 additions and 572 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ ChangeLog

PLEASE NOTE THAT THE API IS STILL VERY UNSTABLE AS MORE USE CASES / FEATURES ARE ADDED REGULARLY

v0.3.2 (XX-XX-2022)
-------------------
* release on PyPI

v0.3.1 (23-03-2020)
-------------------
* Improved the documentation of the vasicek module
Expand All @@ -16,17 +20,14 @@ v0.2.1 (04-04-2019)
-------------------
* Including credit metrics style variance calculation


v0.2.0 (29-03-2019)
-------------------
* Refactoring to include threshold model functionality (formerly with transitionMatrix library)


v0.1.1 (11-07-2017)
-------------------
* Training: Notebook examples


v0.1.0 (16-04-2017)
-------------------
* First public release of the package
21 changes: 0 additions & 21 deletions TODO.md

This file was deleted.

14 changes: 14 additions & 0 deletions _static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* override table width restrictions */
@media screen and (min-width: 767px) {

.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from
overriding this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}

.wy-table-responsive {
overflow: visible !important;
}

}
160 changes: 0 additions & 160 deletions description.rst

This file was deleted.

14 changes: 14 additions & 0 deletions docs/source/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* override table width restrictions */
@media screen and (min-width: 767px) {

.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from
overriding this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}

.wy-table-responsive {
overflow: visible !important;
}

}
18 changes: 7 additions & 11 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import sys
import os
import matplotlib

matplotlib.use('agg')

sys.path.insert(0, os.path.abspath('../../'))
Expand All @@ -39,7 +40,6 @@
# The full version, including alpha/beta/rc tags
release = __version__


# -- General configuration ---------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand All @@ -54,6 +54,7 @@
'sphinx.ext.autosummary',
'sphinx.ext.coverage',
'sphinx.ext.imgmath',
'sphinx.ext.viewcode',
'sphinx.ext.autosectionlabel',
'sphinx.ext.githubpages',
'sphinx.ext.todo',
Expand Down Expand Up @@ -87,7 +88,6 @@
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand All @@ -102,13 +102,13 @@
# documentation.
#
# html_theme_options = {}

html_theme_options = {
'canonical_url': '',
'analytics_id': '',
'logo_only': False,
'logo_only': True,
'display_version': True,
'prev_next_buttons_location': 'bottom',
'style_external_links': False,
'style_external_links': True,
# Toc options
'collapse_navigation': True,
'sticky_navigation': True,
Expand All @@ -117,7 +117,6 @@
'titles_only': False
}


# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
Expand All @@ -133,13 +132,13 @@
#
# html_sidebars = {}

html_css_files = ['custom.css']

# -- Options for HTMLHelp output ---------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'portfolioAnalyticsdoc'


# -- Options for LaTeX output ------------------------------------------------

latex_elements = {
Expand Down Expand Up @@ -168,7 +167,6 @@
'Open Risk', 'manual'),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
Expand All @@ -178,7 +176,6 @@
[author], 1)
]


# -- Options for Texinfo output ----------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
Expand All @@ -190,11 +187,10 @@
'Miscellaneous'),
]


# -- Extension configuration -------------------------------------------------

extensions.append('sphinx.ext.todo')
todo_include_todos=True
todo_include_todos = True

# extensions.append('sphinx_automodapi.automodapi')
# numpydoc_show_class_members = False
Loading

0 comments on commit 8c5a077

Please sign in to comment.