https://github.com/GPflow/GPflow
Revision 27b07703fdad398c9cf03bdfbf631e80bcfb21f2 authored by st-- on 03 February 2020, 14:00:53 UTC, committed by GitHub on 03 February 2020, 14:00:53 UTC
Makes use of Jupytext to store notebook source in a more readable format, which should make PR reviewing as well as fixing bugs much more straightforward. Also provides a Makefile to regenerate .ipynb from source.

* `make pair-ipynb` was used to create the .pct.py/.md versions off the .ipynb in `develop`.

* `make all` will execute all .pct.py/.md jupytext notebooks to recreate the .ipynb (this may change the figures in notebooks that haven't had numpy/tensorflow random seeds set yet)

* test_notebooks now runs .pct.py/.md in the CI
1 parent 40b2727
Raw File
Tip revision: 27b07703fdad398c9cf03bdfbf631e80bcfb21f2 authored by st-- on 03 February 2020, 14:00:53 UTC
jupytext for notebooks (#1239)
Tip revision: 27b0770
.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Emacs backups
*~

# Pycharm IDE directory
.idea

# IPython Notebooks
.ipynb_checkpoints

# VSCode
.vscode

# OSX
.DS_Store
back to top