Skip to content

Commit 349c84f

Browse files
committed
Update rust-python binding to version 0.9.1
1 parent 280ea9d commit 349c84f

File tree

4 files changed

+21
-143
lines changed

4 files changed

+21
-143
lines changed

bindings/python/Cargo.lock

Lines changed: 17 additions & 139 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ crate-type = ["cdylib"]
2222

2323
[dependencies]
2424
pyo3 = "0.23.5"
25-
rwkv-tokenizer = "0.9.0"
25+
rwkv-tokenizer = "0.9.1"
2626
rayon = "1.10.0"

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "pyrwkv_tokenizer"
7-
version = "0.9.0"
7+
version = "0.9.1"
88
requires-python = ">=3.8"
99
description = "RWKV Tokenizer"
1010
readme = "README.md"

bindings/python/pyrwkv_tokenizer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .pyrwkv_tokenizer import __doc__ # noqa: F401
88

99
__all__ = __all__ + ["RWKVTokenizer"]
10-
__version__ = "0.9.0"
10+
__version__ = "0.9.1"
1111

1212

1313
class RWKVTokenizer:
@@ -34,4 +34,4 @@ def vocab_size(self):
3434
return self.tokenizer.vocab_size()
3535

3636
def get_vocab(self):
37-
return self.tokenizer.get_vocab()
37+
return self.tokenizer.get_vocab()

0 commit comments

Comments
 (0)