Skip to content

Commit ffa4fd8

Browse files
committed
Merge branch 'develop'
2 parents 5e2187b + 4c0f87a commit ffa4fd8

File tree

18 files changed

+1220
-280
lines changed

18 files changed

+1220
-280
lines changed

.github/workflows/draft-pdf.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Draft PDF
2+
on: [push]
3+
4+
jobs:
5+
paper:
6+
runs-on: ubuntu-latest
7+
name: Paper Draft
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Build draft PDF
12+
uses: openjournals/openjournals-draft-action@master
13+
with:
14+
journal: joss
15+
paper-path: publication/paper.md
16+
- name: Upload
17+
uses: actions/upload-artifact@v4
18+
with:
19+
name: paper
20+
path: publication/paper.pdf

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,12 @@ docs/source/tutorials/tutorial_outputs/
5050
outputs/
5151

5252
doc/source/tutorials/.ipynb_checkpoints/
53+
5354
/docs/source/tutorials/ACD_RD.ipynb
5455
/docs/source/tutorials/.ipynb_checkpoints/
56+
57+
publication/template/--env
58+
59+
publication/template/--user
60+
61+
publication/template/--volume

docs/source/_static/full-logo.png

1.2 KB
Loading

docs/source/_static/logo-probinet.svg

Lines changed: 44 additions & 32 deletions
Loading

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"myst_nb", # add Jupyter notebooks
4949
"sphinx.ext.napoleon", # 'sphinxcontrib.napoleon' is deprecated # Google style docs
5050
"sphinxcontrib.bibtex",
51-
"sphinx_copybutton", # adds a copy button to code blocks
51+
"sphinx_copybutton" # adds a copy button to code blocks
5252
]
5353
autodoc_default_options = {
5454
"members": True, # when set to True, Sphinx will automatically document all members
@@ -74,7 +74,7 @@
7474
nb_execution_timeout = 1000 # This is the timeout for executing a notebook cell
7575

7676
# -- Options for sphinxcontrib extension ---------------------------------------
77-
bibtex_bibfiles = ["references.bib"]
77+
bibtex_bibfiles = ['references.bib']
7878

7979
# -- Options for HTML evaluation -------------------------------------------------
8080

0 commit comments

Comments
 (0)