From 7b760c57493f1f09c96d5642e238dae9875dbdaa Mon Sep 17 00:00:00 2001 From: taishi-i Date: Fri, 26 Jan 2024 12:51:21 +0900 Subject: [PATCH] update v0.2.10 --- 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 ee42351..53e91ea 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ author = 'Taishi Ikeda' # The short X.Y version -version = '0.2.9' +version = '0.2.10' # The full version, including alpha/beta/rc tags -release = '0.2.9' +release = '0.2.10' # -- General configuration --------------------------------------------------- diff --git a/nagisa/__init__.py b/nagisa/__init__.py index 6423988..39399a0 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.9' +version = '0.2.10' # Initialize instance tagger = Tagger() # Functions diff --git a/setup.py b/setup.py index 0c170a0..92ae1ca 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Operating System :: Unix', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', @@ -85,12 +86,12 @@ def switch_install_requires(): packages=['nagisa'], author='Taishi Ikeda', author_email='taishi.ikeda.0323@gmail.com', - version='0.2.9', + version='0.2.10', 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.9.tar.gz', + download_url='https://github.com/taishi-i/nagisa/archive/0.2.10.tar.gz', license='MIT License', platforms='Unix', setup_requires=['six', 'cython', 'numpy'],