From 6aae3a37c889552f4e86d6a41e8c70bade5e503b Mon Sep 17 00:00:00 2001 From: James Hensman Date: Fri, 21 Nov 2014 11:48:40 +0000 Subject: [PATCH] more copyrighting --- GPy/FAQ.txt | 8 -------- GPy/examples/__init__.py | 2 +- GPy/examples/classification.py | 4 ++-- GPy/examples/coreg_example.py | 3 +++ GPy/examples/dimensionality_reduction.py | 2 +- GPy/examples/non_gaussian.py | 3 +++ GPy/examples/regression.py | 2 +- 7 files changed, 11 insertions(+), 13 deletions(-) delete mode 100644 GPy/FAQ.txt diff --git a/GPy/FAQ.txt b/GPy/FAQ.txt deleted file mode 100644 index 66ba4834..00000000 --- a/GPy/FAQ.txt +++ /dev/null @@ -1,8 +0,0 @@ -Frequently Asked Questions --------------------------- - -Unit tests are run through Travis-Ci. They can be run locally through entering the GPy route diretory and writing - -nosetests testing/ - -Documentation is handled by Sphinx. To build the documentation: diff --git a/GPy/examples/__init__.py b/GPy/examples/__init__.py index 93994175..968333e0 100644 --- a/GPy/examples/__init__.py +++ b/GPy/examples/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Copyright (c) 2012-2014, GPy authors (see AUTHORS.txt). # Licensed under the BSD 3-clause license (see LICENSE.txt) import classification diff --git a/GPy/examples/classification.py b/GPy/examples/classification.py index b9d488d6..b3780073 100644 --- a/GPy/examples/classification.py +++ b/GPy/examples/classification.py @@ -1,9 +1,9 @@ -# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Copyright (c) 2012-2014, GPy authors (see AUTHORS.txt). # Licensed under the BSD 3-clause license (see LICENSE.txt) """ -Gaussian Processes classification +Gaussian Processes classification examples """ import GPy diff --git a/GPy/examples/coreg_example.py b/GPy/examples/coreg_example.py index 6ec635eb..4e9566dc 100644 --- a/GPy/examples/coreg_example.py +++ b/GPy/examples/coreg_example.py @@ -1,3 +1,6 @@ +# Copyright (c) 2012-2014, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + import numpy as np try: import pylab as pb diff --git a/GPy/examples/dimensionality_reduction.py b/GPy/examples/dimensionality_reduction.py index dc0b3dea..eea3bb40 100644 --- a/GPy/examples/dimensionality_reduction.py +++ b/GPy/examples/dimensionality_reduction.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Copyright (c) 2012-2014, GPy authors (see AUTHORS.txt). # Licensed under the BSD 3-clause license (see LICENSE.txt) import numpy as _np diff --git a/GPy/examples/non_gaussian.py b/GPy/examples/non_gaussian.py index 57c841e4..ddac8813 100644 --- a/GPy/examples/non_gaussian.py +++ b/GPy/examples/non_gaussian.py @@ -1,3 +1,6 @@ +# Copyright (c) 2014, Alan Saul +# Licensed under the BSD 3-clause license (see LICENSE.txt) + import GPy import numpy as np from GPy.util import datasets diff --git a/GPy/examples/regression.py b/GPy/examples/regression.py index 14cf0602..37a18f63 100644 --- a/GPy/examples/regression.py +++ b/GPy/examples/regression.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Copyright (c) 2012-2014, GPy authors (see AUTHORS.txt). # Licensed under the BSD 3-clause license (see LICENSE.txt) """