Skip to content

Commit

Permalink
Merge branch 'develop' into feature/filter-converged
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbenito committed Sep 22, 2023
2 parents 5558afc + 43690b0 commit 29e6e9e
Show file tree
Hide file tree
Showing 9 changed files with 604 additions and 300 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ pylint.html
# Saved data
runs/
data/models/
*.pkl

# Docs
docs_build
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
## Unreleased

- Implementation of Data-OOB by @BastienZim
[PR #426](https://github.com/aai-institute/pyDVL/pull/426)
[PR #426](https://github.com/aai-institute/pyDVL/pull/426),
[PR $431](https://github.com/aai-institute/pyDVL/pull/431)
- Refactoring of parallel module. Old imports will stop working in v0.9.0
[PR #421](https://github.com/aai-institute/pyDVL/pull/421)

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ cells which are then hidden in the documentation.

In order to do this, cells are marked with tags understood by the mkdocs
plugin [`mkdocs-jupyter`](https://github.com/danielfrg/mkdocs-jupyter#readme),
namely adding the following to the relevant cells:
namely adding the following to the metadata of the relevant cells:

```yaml
"tags": [
Expand Down
13 changes: 6 additions & 7 deletions docs/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ a.autorefs-external:hover::after {
}

.md-typeset h2 {
font-size: 1.7em;
font-size: 1.3em;
font-weight: 300;
}

.md-typeset h3 {
font-size: 1.1em;
font-weight: 300;
}

Expand Down Expand Up @@ -77,12 +82,6 @@ a.autorefs-external:hover::after {
user-select: none;
}

/* Nicer style of headers in generated API */
h2 code {
font-size: large!important;
background-color: inherit!important;
}

/* Remove cell input and output prompt */
.jp-InputArea-prompt, .jp-OutputArea-prompt {
display: none !important;
Expand Down
Loading

0 comments on commit 29e6e9e

Please sign in to comment.