Skip to content

Commit

Permalink
update v0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
taishi-i committed Sep 8, 2022
1 parent 59f7ffc commit 0513fa2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ You can install nagisa by using the following command.
```bash
pip install nagisa
```
For Windows users, please run it with python 3.6 or 3.7 (64bit).
For Windows users, please run it with python 3.6, 3.7 or 3.8 (64bit).

Basic usage
=============
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
author = 'Taishi Ikeda'

# The short X.Y version
version = '0.2.7'
version = '0.2.8'
# The full version, including alpha/beta/rc tags
release = '0.2.7'
release = '0.2.8'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion nagisa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from nagisa.tagger import Tagger
from nagisa.train import fit

version = '0.2.7'
version = '0.2.8'
# Initialize instance
tagger = Tagger()
# Functions
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ def switch_install_requires():
packages=['nagisa'],
author='Taishi Ikeda',
author_email='[email protected]',
version='0.2.7',
version='0.2.8',
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.7.tar.gz',
download_url='https://github.com/taishi-i/nagisa/archive/0.2.8.tar.gz',
license='MIT License',
platforms='Unix',
setup_requires=['six', 'cython', 'numpy'],
Expand Down

0 comments on commit 0513fa2

Please sign in to comment.