From 4179ebe94bf5743a6d7a4965156dff185a359803 Mon Sep 17 00:00:00 2001 From: taishi-i Date: Sun, 30 Jul 2023 20:52:40 +0900 Subject: [PATCH] update v0.2.9 --- docs/conf.py | 4 ++-- nagisa/__init__.py | 2 +- setup.py | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 78736cb..834e15d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ author = 'Taishi Ikeda' # The short X.Y version -version = '0.2.8' +version = '0.2.9' # The full version, including alpha/beta/rc tags -release = '0.2.8' +release = '0.2.9' # -- General configuration --------------------------------------------------- diff --git a/nagisa/__init__.py b/nagisa/__init__.py index dfce38b..6423988 100644 --- a/nagisa/__init__.py +++ b/nagisa/__init__.py @@ -3,7 +3,7 @@ from nagisa.tagger import Tagger from nagisa.train import fit -version = '0.2.8' +version = '0.2.9' # Initialize instance tagger = Tagger() # Functions diff --git a/setup.py b/setup.py index 83f8da6..0c170a0 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Operating System :: Unix', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', @@ -84,12 +85,12 @@ def switch_install_requires(): packages=['nagisa'], author='Taishi Ikeda', author_email='taishi.ikeda.0323@gmail.com', - version='0.2.8', + version='0.2.9', description='A Japanese tokenizer based on recurrent neural networks', long_description_content_type="text/markdown", long_description=long_description, url='https://github.com/taishi-i/nagisa', - download_url='https://github.com/taishi-i/nagisa/archive/0.2.8.tar.gz', + download_url='https://github.com/taishi-i/nagisa/archive/0.2.9.tar.gz', license='MIT License', platforms='Unix', setup_requires=['six', 'cython', 'numpy'],