Skip to content

Commit

Permalink
Merge pull request #582 from ICB-DCM/develop
Browse files Browse the repository at this point in the history
Release 0.12.6
  • Loading branch information
yannikschaelte authored Aug 30, 2022
2 parents b077f5a + 82fa78d commit b44299e
Show file tree
Hide file tree
Showing 15 changed files with 771 additions and 28 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ Release Notes
...........


0.12.6 (2022-08-30)
-------------------

Minor:

* Add JOSS paper of version 0.12.5
* Update Julia reference DiffEqJump -> JumpProcesses (name change)
* Unfix jinja2
* Update flake8 dependencies after new issues


0.12.5 (2022-06-21)
-------------------

Expand Down
9 changes: 8 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,26 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
# include documentation from docstrings
'sphinx.ext.autodoc',
# generate autodoc summaries
'sphinx.ext.autosummary',
# use mathjax for latex formulas
'sphinx.ext.mathjax',
# link to code
'sphinx.ext.viewcode',
# link to other projects' docs
'sphinx.ext.intersphinx',
# support numpy and google style docstrings
'sphinx.ext.napoleon',
# support todo items
'sphinx.ext.todo',
# test snippets in the documentation
'sphinx.ext.doctest',
# source parser for jupyter notebook files
'nbsphinx',
# code highlighting in jupyter cells
'IPython.sphinxext.ipython_console_highlighting',
'sphinx.ext.autosummary',
]

# default autodoc options
Expand Down
4 changes: 2 additions & 2 deletions doc/examples/model_julia/SIR.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module SIR
# Install dependencies
using Pkg
Pkg.add("Catalyst")
Pkg.add("DiffEqJump")
Pkg.add("JumpProcesses")

# Define reaction network
using Catalyst
Expand All @@ -24,7 +24,7 @@ tspan = (0.0, 250.0)
prob = DiscreteProblem(sir_model, u0, tspan, p)

# formulate as Markov jump process
using DiffEqJump
using JumpProcesses
jump_prob = JumpProblem(
sir_model, prob, Direct(), save_positions=(false, false),
)
Expand Down
6 changes: 3 additions & 3 deletions doc/examples/using_julia.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1min 28s, sys: 3.97 s, total: 1min 32s\n",
"Wall time: 1min 34s\n"
"CPU times: user 33.7 s, sys: 1.46 s, total: 35.1 s\n",
"Wall time: 34.9 s\n"
]
}
],
Expand Down Expand Up @@ -501,7 +501,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.10.4"
}
},
"nbformat": 4,
Expand Down
Binary file added doc/joss_0_12/concept.pdf
Binary file not shown.
Loading

0 comments on commit b44299e

Please sign in to comment.