Skip to content

Commit cbddadc

Browse files
authored
Merge pull request #63 from man-group/man-group/release-0.3.2
Release version 0.3.2
2 parents e3a514b + 231c8ab commit cbddadc

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
PYTHON_VERSION: "3_6"
178178
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_6
179179
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_6
180-
VERSION: 0.3.1
180+
VERSION: 0.3.2
181181
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
182182
YARN_STATIC_DIR: notebooker/web/static/
183183
IMAGE_NAME: mangroup/notebooker
@@ -189,7 +189,7 @@ jobs:
189189
environment:
190190
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_7
191191
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_7
192-
VERSION: 0.3.1
192+
VERSION: 0.3.2
193193
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
194194
YARN_STATIC_DIR: notebooker/web/static/
195195
IMAGE_NAME: mangroup/notebooker

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.3.2 (2021-11-??)
1+
0.3.2 (2021-11-10)
22
------------------
33

44
* Feature: .ipynb files are now natively supported and can be used as Notebook Templates (#57)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Man Group Quant Tech"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.3.1"
26+
release = "0.3.2"
2727

2828

2929
# -- General configuration ---------------------------------------------------

docs/templates.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ Intro to Notebook Templates
55

66
Creating a Notebook Template
77
----------------------------
8+
Both :code:`ipynb` and :code:`py` file types are supported for use as templates.
9+
810
To create a Notebook Template, we use a tool called :code:`jupytext`.
911
It allows for interchangeably converting between :code:`.ipynb` and :code:`.py` files.
10-
To create your own template from an existing :code:`.ipynb` file, you can either
11-
follow the instructions for installation `on their homepage <https://github.com/mwouts/jupytext>`_, or
12-
use :code:`convert_ipynb_to_py` directly from the console when Notebooker is installed.
12+
13+
If you would like to convert an existing :code:`.ipynb` file to create a template in
14+
:code:`.py` form you can either follow the instructions for installation
15+
`on their homepage <https://github.com/mwouts/jupytext>`_, or use :code:`convert_ipynb_to_py`
16+
directly from the console when Notebooker is installed.
1317

1418
The purpose of a notebook template is to allow you to write Jupyter notebooks as normal, and then
1519
commit them into source control as python files: allowing for simple diffs and control
@@ -19,7 +23,7 @@ Where should templates go?
1923
--------------------------
2024
It is possible (and encouraged) to use a separate git repository version controlling notebook templates.
2125
To use a git repository as a notebook templates repository, you simply need to create a folder called
22-
:code:`notebook_templates/` which contains the .py template files. Additionally, a
26+
:code:`notebook_templates/` which contains the :code:`.py` and :code:`.ipynb` template files. Additionally, a
2327
:code:`notebook_requirements.txt`, containing extra package requirements to be
2428
installed, should be added to that folder.
2529

notebooker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.1"
1+
__version__ = "0.3.2"

notebooker/web/static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notebooker",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Notebooker - Turn notebooks into reports",
55
"dependencies": {
66
"bootstrap-table": "1.15.3",

0 commit comments

Comments
 (0)