mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-05 14:55:15 +02:00
Merge pull request #367 from SheffieldML/devel
Update setup to fix problems with slicing
This commit is contained in:
commit
42bfd998b0
4 changed files with 7 additions and 8 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "1.0.5"
|
||||
__version__ = "1.0.6"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 1.0.5
|
||||
current_version = 1.0.6
|
||||
tag = False
|
||||
commit = True
|
||||
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue