Skip to content

Commit 8c5a077

Browse files
committed
Version 0.4 (release)
1 parent 19453e4 commit 8c5a077

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+516
-572
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ ChangeLog
33

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

6+
v0.3.2 (XX-XX-2022)
7+
-------------------
8+
* release on PyPI
9+
610
v0.3.1 (23-03-2020)
711
-------------------
812
* Improved the documentation of the vasicek module
@@ -16,17 +20,14 @@ v0.2.1 (04-04-2019)
1620
-------------------
1721
* Including credit metrics style variance calculation
1822

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

24-
2527
v0.1.1 (11-07-2017)
2628
-------------------
2729
* Training: Notebook examples
2830

29-
3031
v0.1.0 (16-04-2017)
3132
-------------------
3233
* First public release of the package

TODO.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

_static/custom.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* override table width restrictions */
2+
@media screen and (min-width: 767px) {
3+
4+
.wy-table-responsive table td {
5+
/* !important prevents the common CSS stylesheets from
6+
overriding this as on RTD they are loaded after this stylesheet */
7+
white-space: normal !important;
8+
}
9+
10+
.wy-table-responsive {
11+
overflow: visible !important;
12+
}
13+
14+
}

description.rst

Lines changed: 0 additions & 160 deletions
This file was deleted.

docs/source/_static/custom.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* override table width restrictions */
2+
@media screen and (min-width: 767px) {
3+
4+
.wy-table-responsive table td {
5+
/* !important prevents the common CSS stylesheets from
6+
overriding this as on RTD they are loaded after this stylesheet */
7+
white-space: normal !important;
8+
}
9+
10+
.wy-table-responsive {
11+
overflow: visible !important;
12+
}
13+
14+
}

docs/source/conf.py

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import sys
2020
import os
2121
import matplotlib
22+
2223
matplotlib.use('agg')
2324

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

42-
4343
# -- General configuration ---------------------------------------------------
4444

4545
# If your documentation needs a minimal Sphinx version, state it here.
@@ -54,6 +54,7 @@
5454
'sphinx.ext.autosummary',
5555
'sphinx.ext.coverage',
5656
'sphinx.ext.imgmath',
57+
'sphinx.ext.viewcode',
5758
'sphinx.ext.autosectionlabel',
5859
'sphinx.ext.githubpages',
5960
'sphinx.ext.todo',
@@ -87,7 +88,6 @@
8788
# The name of the Pygments (syntax highlighting) style to use.
8889
pygments_style = 'sphinx'
8990

90-
9191
# -- Options for HTML output -------------------------------------------------
9292

9393
# The theme to use for HTML and HTML Help pages. See the documentation for
@@ -102,13 +102,13 @@
102102
# documentation.
103103
#
104104
# html_theme_options = {}
105+
105106
html_theme_options = {
106-
'canonical_url': '',
107107
'analytics_id': '',
108-
'logo_only': False,
108+
'logo_only': True,
109109
'display_version': True,
110110
'prev_next_buttons_location': 'bottom',
111-
'style_external_links': False,
111+
'style_external_links': True,
112112
# Toc options
113113
'collapse_navigation': True,
114114
'sticky_navigation': True,
@@ -117,7 +117,6 @@
117117
'titles_only': False
118118
}
119119

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

135+
html_css_files = ['custom.css']
136136

137137
# -- Options for HTMLHelp output ---------------------------------------------
138138

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

142-
143142
# -- Options for LaTeX output ------------------------------------------------
144143

145144
latex_elements = {
@@ -168,7 +167,6 @@
168167
'Open Risk', 'manual'),
169168
]
170169

171-
172170
# -- Options for manual page output ------------------------------------------
173171

174172
# One entry per manual page. List of tuples
@@ -178,7 +176,6 @@
178176
[author], 1)
179177
]
180178

181-
182179
# -- Options for Texinfo output ----------------------------------------------
183180

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

193-
194190
# -- Extension configuration -------------------------------------------------
195191

196192
extensions.append('sphinx.ext.todo')
197-
todo_include_todos=True
193+
todo_include_todos = True
198194

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

0 commit comments

Comments
 (0)