From 3eea3e13c9d3dcd750b8012a33b1ded7915ecfe2 Mon Sep 17 00:00:00 2001 From: steppi Date: Thu, 10 Sep 2020 09:02:52 -0400 Subject: [PATCH] Bump version numbers --- adeft/__init__.py | 2 +- doc/conf.py | 4 ++-- setup.py | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/adeft/__init__.py b/adeft/__init__.py index 3cfb7c38..78403978 100644 --- a/adeft/__init__.py +++ b/adeft/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.6.0' +__version__ = '0.7.0' from adeft.download import get_available_models diff --git a/doc/conf.py b/doc/conf.py index 847c9779..c40a7a0e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -24,9 +24,9 @@ author = 'Albert Steppi' # The short X.Y version -version = '0.6' +version = '0.7' # The full version, including alpha/beta/rc tags -release = '0.6.0' +release = '0.7.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index b5166364..31c0b885 100644 --- a/setup.py +++ b/setup.py @@ -28,20 +28,21 @@ compiler_directives={'language_level': 3}) setup(name='adeft', - version='0.6.0', + version='0.7.0', description=('Acromine based Disambiguation of Entities From' ' Text'), long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/indralab/adeft', - download_url='https://github.com/indralab/adeft/archive/0.6.0.tar.gz', + download_url='https://github.com/indralab/adeft/archive/0.7.0.tar.gz', author='adeft developers, Harvard Medical School', author_email='albert_steppi@hms.harvard.edu', classifiers=[ 'Development Status :: 4 - Beta', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7' + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8' ], packages=find_packages(), install_requires=['nltk', 'scikit-learn>=0.20.0', 'wget',