Skip to content

Commit

Permalink
Update myst-nb to ^0.9.0
Browse files Browse the repository at this point in the history
Closes #73
  • Loading branch information
kiudee committed Aug 24, 2020
1 parent e1f3afd commit 61e47c0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
2 changes: 2 additions & 0 deletions docs/faq.myst
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ strength of the engine gets worse in all directions.
Obviously we do not know the optimum in advance. Thus, we usually want to err
on the side of slightly too large ranges.
```{glossary}

Example 1
We have one parameter and suspect it to lie in between 1 and 2, but
are not 100% certain. We set the parameter range to `Real(0.0, 3.0)` to
avoid missing the optimum. A range of `Real(0.0, 10.0)` or even
`Real(0.0, 100.0)` would have been overkill and likely hurt the convergence.

Example 2
We have a parameter which lies in the range [0, 1], but are not even sure
what the correct order of magnitude is (e.g. could be 0.3 or even 0.001).
Expand Down
29 changes: 14 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ atomicwrites = "^1.4.0"
Sphinx = {version = "^3.1.2", optional = true}
scikit-learn = ">=0.22,<0.23"
sphinx-book-theme = {version = "^0.0.35", optional = true}
myst-nb = {git = "https://github.com/executablebooks/MyST-NB", optional = true}
myst-nb = {version = "^0.9", optional = true}

[tool.poetry.extras]
dist = ["joblib", "psycopg2", "sqlalchemy", "pandas"]
Expand All @@ -53,7 +53,7 @@ pre-commit = "^2.6.0"
isort = "^5.3.2"
flake8-bugbear = "^20.1.4"
sphinx-book-theme = "^0.0.35"
myst-nb = {git = "https://github.com/executablebooks/MyST-NB"}
myst-nb = "^0.9"
sphinx-autobuild = "^0.7.1"

[tool.poetry.scripts]
Expand Down

0 comments on commit 61e47c0

Please sign in to comment.