Merge pull request #367 from SheffieldML/devel

Update setup to fix problems with slicing
This commit is contained in:
Max Zwiessele 2016-04-11 08:16:04 +01:00
commit 42bfd998b0
4 changed files with 7 additions and 8 deletions

View file

@ -9,17 +9,16 @@ omit = ./GPy/testing/*.py, travis_tests.py, setup.py, ./GPy/__version__.py
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
verbose
# Don't complain about missing debug-only code:
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
raise NotImplemented
raise
except
pass
Not implemented
# Don't complain if non-runnable code isn't run:
if 0:

View file

@ -1 +1 @@
__version__ = "1.0.5"
__version__ = "1.0.6"

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.5
current_version = 1.0.6
tag = False
commit = True

View file

@ -144,7 +144,7 @@ setup(name = 'GPy',
py_modules = ['GPy.__init__'],
test_suite = 'GPy.testing',
long_description=desc,
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz'],
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz>=0.5.2'],
extras_require = {'docs':['sphinx'],
'optional':['mpi4py',
'ipython>=4.0.0',
@ -198,4 +198,4 @@ try:
else:
print("GPy: User configuration file at location {}".format(user_file))
except:
print("GPy: Could not write user configuration file {}".format(user_file))
print("GPy: Could not write user configuration file {}".format(user_file))