From a6e6f875d783603ea6613aaf19cb6bbc02ef3e41 Mon Sep 17 00:00:00 2001 From: willqvq Date: Fri, 6 Nov 2020 20:28:27 +0800 Subject: [PATCH] Preparing for version 0.6.0 --- docs/source/conf.py | 6 +++--- fastNLP/__init__.py | 2 +- setup.py | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 4ef815f5..d1db2330 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,13 +20,13 @@ sys.path.insert(0, os.path.abspath('../../')) # -- Project information ----------------------------------------------------- project = 'fastNLP' -copyright = '2018, xpqiu' +copyright = '2020, xpqiu' author = 'xpqiu' # The short X.Y version -version = '0.5.0' +version = '0.6.0' # The full version, including alpha/beta/rc tags -release = '0.5.0' +release = '0.6.0' # -- General configuration --------------------------------------------------- diff --git a/fastNLP/__init__.py b/fastNLP/__init__.py index be6b744e..efc46888 100644 --- a/fastNLP/__init__.py +++ b/fastNLP/__init__.py @@ -84,7 +84,7 @@ __all__ = [ 'logger', "init_logger_dist", ] -__version__ = '0.5.6' +__version__ = '0.6.0' import sys diff --git a/setup.py b/setup.py index 150e8e22..2a75a42c 100644 --- a/setup.py +++ b/setup.py @@ -16,13 +16,13 @@ print(pkgs) setup( name='FastNLP', - version='0.5.6', - url='https://github.com/fastnlp/fastNLP', + version='0.6.0', + url='https://gitee.com/fastnlp/fastNLP', description='fastNLP: Deep Learning Toolkit for NLP, developed by Fudan FastNLP Team', long_description=readme, long_description_content_type='text/markdown', license='Apache License', - author='FudanNLP', + author='Fudan FastNLP Team', python_requires='>=3.6', packages=pkgs, install_requires=reqs.strip().split('\n'),