Skip to content

Commit b44299e

Browse files
Merge pull request #582 from ICB-DCM/develop
Release 0.12.6
2 parents b077f5a + 82fa78d commit b44299e

File tree

15 files changed

+771
-28
lines changed

15 files changed

+771
-28
lines changed

CHANGELOG.rst

+11
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ Release Notes
88
...........
99

1010

11+
0.12.6 (2022-08-30)
12+
-------------------
13+
14+
Minor:
15+
16+
* Add JOSS paper of version 0.12.5
17+
* Update Julia reference DiffEqJump -> JumpProcesses (name change)
18+
* Unfix jinja2
19+
* Update flake8 dependencies after new issues
20+
21+
1122
0.12.5 (2022-06-21)
1223
-------------------
1324

doc/conf.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,26 @@
2929
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3030
# ones.
3131
extensions = [
32+
# include documentation from docstrings
3233
'sphinx.ext.autodoc',
34+
# generate autodoc summaries
35+
'sphinx.ext.autosummary',
36+
# use mathjax for latex formulas
3337
'sphinx.ext.mathjax',
3438
# link to code
3539
'sphinx.ext.viewcode',
3640
# link to other projects' docs
3741
'sphinx.ext.intersphinx',
42+
# support numpy and google style docstrings
3843
'sphinx.ext.napoleon',
44+
# support todo items
3945
'sphinx.ext.todo',
46+
# test snippets in the documentation
4047
'sphinx.ext.doctest',
48+
# source parser for jupyter notebook files
4149
'nbsphinx',
4250
# code highlighting in jupyter cells
4351
'IPython.sphinxext.ipython_console_highlighting',
44-
'sphinx.ext.autosummary',
4552
]
4653

4754
# default autodoc options

doc/examples/model_julia/SIR.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module SIR
55
# Install dependencies
66
using Pkg
77
Pkg.add("Catalyst")
8-
Pkg.add("DiffEqJump")
8+
Pkg.add("JumpProcesses")
99

1010
# Define reaction network
1111
using Catalyst
@@ -24,7 +24,7 @@ tspan = (0.0, 250.0)
2424
prob = DiscreteProblem(sir_model, u0, tspan, p)
2525

2626
# formulate as Markov jump process
27-
using DiffEqJump
27+
using JumpProcesses
2828
jump_prob = JumpProblem(
2929
sir_model, prob, Direct(), save_positions=(false, false),
3030
)

doc/examples/using_julia.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
"name": "stdout",
6666
"output_type": "stream",
6767
"text": [
68-
"CPU times: user 1min 28s, sys: 3.97 s, total: 1min 32s\n",
69-
"Wall time: 1min 34s\n"
68+
"CPU times: user 33.7 s, sys: 1.46 s, total: 35.1 s\n",
69+
"Wall time: 34.9 s\n"
7070
]
7171
}
7272
],
@@ -501,7 +501,7 @@
501501
"name": "python",
502502
"nbconvert_exporter": "python",
503503
"pygments_lexer": "ipython3",
504-
"version": "3.9.7"
504+
"version": "3.10.4"
505505
}
506506
},
507507
"nbformat": 4,

doc/joss_0_12/concept.pdf

14 KB
Binary file not shown.

0 commit comments

Comments
 (0)