https://github.com/GPflow/GPflow
Revision b69f71daab2d62575a312e4c13db798e11157cce authored by Artem Artemev on 29 August 2017, 13:16:41 UTC, committed by Mark van der Wilk on 29 August 2017, 13:16:41 UTC
* First part of renaming (w/o docs)

* Second part of renaming (includes docs)

* Third part of renaming (GPflow => gpflow)

* Rename 'import GPflow' in notebooks

* Revert back GPflow copyright headers

* Fix project name in Manifest.in

* Rebase with master

* Resolving conflicts in tests.

* Change release version.
1 parent 760ed24
Raw File
Tip revision: b69f71daab2d62575a312e4c13db798e11157cce authored by Artem Artemev on 29 August 2017, 13:16:41 UTC
GPflow python package name doesn't follow PEP8 (#477)
Tip revision: b69f71d
.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
back to top