https://github.com/GPflow/GPflow
Revision ba28c56bb8e4d593c4f0943b75ec2bcc8bd27a25 authored by jordigraumo on 11 October 2019, 09:02:35 UTC, committed by GitHub on 11 October 2019, 09:02:35 UTC
* regression notebook update to gpflow2

* now it has the correct text

* restart&run all, and some minor text changes

* minor updates

* Update regression.ipynb
1 parent 8e2e5cf
Raw File
Tip revision: ba28c56bb8e4d593c4f0943b75ec2bcc8bd27a25 authored by jordigraumo on 11 October 2019, 09:02:35 UTC
GPflow2.0 notebook update: regression.ipynb (#1076)
Tip revision: ba28c56
Makefile
.PHONY: help clean dev docs package test

help:
	@echo "The following make targets are available:"
	@echo "	dev-install		install all dependencies for dev environment and sets a egg link to the project sources"
	@echo "	install			install all dependencies and the project in the current environment"
	@echo "	package			build pip package"
	@echo "	test			run all tests in parallel"
	@echo "	clean			removes package, build files and egg info"

clean:
	rm -rf dist *.egg-info build

dev-install:
	pip install -e .

install:
	pip install .

package:
	python setup.py bdist

test:
	pytest -n auto tests/
back to top