mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-11 15:15:15 +02:00
Merge pull request #274 from SheffieldML/bumpversion
Have pypi show the link to github
This commit is contained in:
commit
6f9c5042f9
3 changed files with 6 additions and 4 deletions
|
|
@ -1 +1 @@
|
|||
__version__ = "0.8.20"
|
||||
__version__ = "0.8.21"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.8.20
|
||||
current_version = 0.8.21
|
||||
tag = True
|
||||
commit = True
|
||||
|
||||
|
|
|
|||
6
setup.py
6
setup.py
|
|
@ -57,6 +57,8 @@ def read_to_rst(fname):
|
|||
except ImportError:
|
||||
return read(fname)
|
||||
|
||||
read_to_rst('README.md')
|
||||
|
||||
version_dummy = {}
|
||||
exec(read('GPy/__version__.py'), version_dummy)
|
||||
__version__ = version_dummy['__version__']
|
||||
|
|
@ -137,7 +139,7 @@ setup(name = 'GPy',
|
|||
include_package_data = True,
|
||||
py_modules = ['GPy.__init__'],
|
||||
test_suite = 'GPy.testing',
|
||||
long_description=read_to_rst('README.md'),
|
||||
long_description='https://github.com/SheffieldML/GPy',
|
||||
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz'],
|
||||
extras_require = {'docs':['sphinx'],
|
||||
'optional':['mpi4py',
|
||||
|
|
@ -187,4 +189,4 @@ if not os.path.exists(user_file):
|
|||
tmp = l.read()
|
||||
f.write(tmp)
|
||||
else:
|
||||
print("GPy: User configuration file at location {}".format(user_file))
|
||||
print("GPy: User configuration file at location {}".format(user_file))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue