From df2f36479d45e1cd96caab1b1108c9c3e0388c49 Mon Sep 17 00:00:00 2001 From: taishi-i Date: Thu, 11 Jun 2020 21:20:25 +0900 Subject: [PATCH] update v0.2.6 --- docs/conf.py | 4 ++-- nagisa/__init__.py | 2 +- setup.py | 6 ++++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index df4b194..5ad9983 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ author = 'Taishi Ikeda' # The short X.Y version -version = '0.2.5' +version = '0.2.6' # The full version, including alpha/beta/rc tags -release = '0.2.5' +release = '0.2.6' # -- General configuration --------------------------------------------------- diff --git a/nagisa/__init__.py b/nagisa/__init__.py index 73d4b8d..a925125 100644 --- a/nagisa/__init__.py +++ b/nagisa/__init__.py @@ -2,7 +2,7 @@ from nagisa.tagger import Tagger from nagisa.train import fit -version = '0.2.5' +version = '0.2.6' # Initialize instance tagger = Tagger() # Functions diff --git a/setup.py b/setup.py index cc19e00..64c5e0a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,9 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: Unix', + 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Topic :: Text Processing :: Linguistic', 'Topic :: Software Development :: Libraries :: Python Modules' @@ -68,11 +70,11 @@ def extensions(): packages=['nagisa'], author = 'Taishi Ikeda', author_email = 'taishi.ikeda.0323@gmail.com', - version = '0.2.5', + version = '0.2.6', description = 'A Japanese tokenizer based on recurrent neural networks', long_description = long_description, url = 'https://github.com/taishi-i/nagisa', - download_url = 'https://github.com/taishi-i/nagisa/archive/0.2.5.tar.gz', + download_url = 'https://github.com/taishi-i/nagisa/archive/0.2.6.tar.gz', license = 'MIT License', platforms = 'Unix', setup_requires=['six', 'cython', 'numpy',],