From 6c8ab73d32c4c4ca6e8b902290031843bd29365f Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 18:29:10 +0100 Subject: [PATCH 1/7] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e415d58f..db032ea8 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ If that is the case, it is best to clean the repo and reinstall. | | Travis-CI | Codecov | RTFD | | ---: | :--: | :---: | :---: | -| **master:** | [![masterstat](https://travis-ci.org/SheffieldML/GPy.svg?branch=master)](https://travis-ci.org/SheffieldML/GPy) | [![covmaster](http://codecov.io/github/SheffieldML/GPy/coverage.svg?branch=master)](http://codecov.io/github/SheffieldML/GPy?branch=master) | [![docmaster](https://readthedocs.org/projects/gpy/badge/?version=master)](http://gpy.readthedocs.org/en/master/) | | **devel:** | [![develstat](https://travis-ci.org/SheffieldML/GPy.svg?branch=devel)](https://travis-ci.org/SheffieldML/GPy) | [![covdevel](http://codecov.io/github/SheffieldML/GPy/coverage.svg?branch=devel)](http://codecov.io/github/SheffieldML/GPy?branch=devel) | [![docdevel](https://readthedocs.org/projects/gpy/badge/?version=devel)](http://gpy.readthedocs.org/en/devel/) | ## Supported Platforms: From 8ff9619003230c6aed92087f1a3a3048ee6a26ed Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 22:51:46 +0100 Subject: [PATCH 2/7] Update MANIFEST.in --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index be80e974..3af0c286 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,6 +4,7 @@ include doc/source/index.rst include doc/source/tuto*.rst include README.md include README.rst +include AUTHORS.txt # Data and config recursive-include GPy *.json From f20aa4ed5c685588aa6446229d5eff4489da6038 Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 22:54:08 +0100 Subject: [PATCH 3/7] Update setup.cfg --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index d393931e..d20b4aa8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 tag = False commit = True From fe2b0380699290db36d0454629c56445acd58b15 Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 22:54:30 +0100 Subject: [PATCH 4/7] Update __version__.py --- GPy/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/__version__.py b/GPy/__version__.py index 5becc17c..5c4105cd 100644 --- a/GPy/__version__.py +++ b/GPy/__version__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.0.1" From deffbcc304fb5377ad03a5d19454afd68c2a530e Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 23:06:43 +0100 Subject: [PATCH 5/7] Create README.rst --- README.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.rst diff --git a/README.rst b/README.rst new file mode 100644 index 00000000..9436b462 --- /dev/null +++ b/README.rst @@ -0,0 +1,12 @@ +# GPy + +The Gaussian processes framework in Python. + +* GPy [homepage](http://sheffieldml.github.io/GPy/) +* Tutorial [notebooks](http://nbviewer.ipython.org/github/SheffieldML/notebook/blob/master/GPy/index.ipynb) +* User [mailing-list](https://lists.shef.ac.uk/sympa/subscribe/gpy-users) +* Developer [documentation](http://gpy.readthedocs.org/en/devel/) +* Travis-CI [unit-tests](https://travis-ci.org/SheffieldML/GPy) +* [![licence](https://img.shields.io/badge/licence-BSD-blue.svg)](http://opensource.org/licenses/BSD-3-Clause) + +For full description please refer to the [github page](http://sheffieldml.github.io/GPy/) From 6682f620ea30e67d30a48156eabbae9da1704d87 Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 23:07:31 +0100 Subject: [PATCH 6/7] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9e0a2bf2..949d453d 100644 --- a/setup.py +++ b/setup.py @@ -143,7 +143,7 @@ setup(name = 'GPy', include_package_data = True, py_modules = ['GPy.__init__'], test_suite = 'GPy.testing', - long_description=desc, + #long_description=desc, install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz'], extras_require = {'docs':['sphinx'], 'optional':['mpi4py', From 15fedcac16459c71ac98b423d53f0f8115a4ea5b Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 1 Apr 2016 23:07:44 +0100 Subject: [PATCH 7/7] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 949d453d..450cf4fd 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def read_to_rst(fname): except ImportError: return read(fname) -desc = read_to_rst('README.md') +#desc = read_to_rst('README.md') version_dummy = {} exec(read('GPy/__version__.py'), version_dummy)