Browse Source

!2 发布 fastNLP 的 0.6.0 版本

Merge pull request !2 from WillQvQ/dev0.6
tags/v0.6.0
WillQvQ Gitee 3 years ago
parent
commit
d476678044
3 changed files with 7 additions and 7 deletions
  1. +3
    -3
      docs/source/conf.py
  2. +1
    -1
      fastNLP/__init__.py
  3. +3
    -3
      setup.py

+ 3
- 3
docs/source/conf.py View File

@@ -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 ---------------------------------------------------



+ 1
- 1
fastNLP/__init__.py View File

@@ -84,7 +84,7 @@ __all__ = [
'logger',
"init_logger_dist",
]
__version__ = '0.5.6'
__version__ = '0.6.0'

import sys



+ 3
- 3
setup.py View File

@@ -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'),


Loading…
Cancel
Save