lindera-python 1.2.0__tar.gz → 1.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. {lindera_python-1.2.0 → lindera_python-1.3.0}/Cargo.lock +30 -23
  2. {lindera_python-1.2.0 → lindera_python-1.3.0}/Cargo.toml +2 -2
  3. {lindera_python-1.2.0 → lindera_python-1.3.0}/PKG-INFO +1 -1
  4. {lindera_python-1.2.0 → lindera_python-1.3.0}/poetry.lock +27 -27
  5. {lindera_python-1.2.0 → lindera_python-1.3.0}/pyproject.toml +3 -3
  6. {lindera_python-1.2.0 → lindera_python-1.3.0}/.github/FUNDING.yml +0 -0
  7. {lindera_python-1.2.0 → lindera_python-1.3.0}/.github/dependabot.yml +0 -0
  8. {lindera_python-1.2.0 → lindera_python-1.3.0}/.github/workflows/periodic.yml +0 -0
  9. {lindera_python-1.2.0 → lindera_python-1.3.0}/.github/workflows/regression.yml +0 -0
  10. {lindera_python-1.2.0 → lindera_python-1.3.0}/.github/workflows/release.yml +0 -0
  11. {lindera_python-1.2.0 → lindera_python-1.3.0}/.gitignore +0 -0
  12. {lindera_python-1.2.0 → lindera_python-1.3.0}/CHANGES.md +0 -0
  13. {lindera_python-1.2.0 → lindera_python-1.3.0}/LICENSE +0 -0
  14. {lindera_python-1.2.0 → lindera_python-1.3.0}/Makefile +0 -0
  15. {lindera_python-1.2.0 → lindera_python-1.3.0}/README.md +0 -0
  16. {lindera_python-1.2.0 → lindera_python-1.3.0}/examples/build_ipadic.py +0 -0
  17. {lindera_python-1.2.0 → lindera_python-1.3.0}/examples/tokenize.py +0 -0
  18. {lindera_python-1.2.0 → lindera_python-1.3.0}/examples/tokenize_with_decompose.py +0 -0
  19. {lindera_python-1.2.0 → lindera_python-1.3.0}/examples/tokenize_with_filters.py +0 -0
  20. {lindera_python-1.2.0 → lindera_python-1.3.0}/examples/tokenize_with_userdict.py +0 -0
  21. {lindera_python-1.2.0 → lindera_python-1.3.0}/examples/train_and_export.py +0 -0
  22. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/bocchan.txt +0 -0
  23. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/cc-cedict_metadata.json +0 -0
  24. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/cc-cedict_simple_userdic.bin +0 -0
  25. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/cc-cedict_simple_userdic.csv +0 -0
  26. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic-neologd_metadata.json +0 -0
  27. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_detailed_userdic.csv +0 -0
  28. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_metadata.json +0 -0
  29. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_mixed_userdic.csv +0 -0
  30. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_simple_userdic.bin +0 -0
  31. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_simple_userdic.csv +0 -0
  32. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
  33. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
  34. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ko-dic_metadata.json +0 -0
  35. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ko-dic_simple_userdic.bin +0 -0
  36. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/ko-dic_simple_userdic.csv +0 -0
  37. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/lindera.yml +0 -0
  38. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/unidic_metadata.json +0 -0
  39. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/unidic_simple_userdic.bin +0 -0
  40. {lindera_python-1.2.0 → lindera_python-1.3.0}/resources/unidic_simple_userdic.csv +0 -0
  41. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/dictionary.rs +0 -0
  42. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/error.rs +0 -0
  43. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/lib.rs +0 -0
  44. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/metadata.rs +0 -0
  45. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/mode.rs +0 -0
  46. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/schema.rs +0 -0
  47. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/tokenizer.rs +0 -0
  48. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/trainer.rs +0 -0
  49. {lindera_python-1.2.0 → lindera_python-1.3.0}/src/util.rs +0 -0
  50. {lindera_python-1.2.0 → lindera_python-1.3.0}/tests/__init__py +0 -0
  51. {lindera_python-1.2.0 → lindera_python-1.3.0}/tests/test_tokenize_ipadic.py +0 -0
  52. {lindera_python-1.2.0 → lindera_python-1.3.0}/tests/test_trainer.py +0 -0
@@ -451,9 +451,9 @@ dependencies = [
451
451
 
452
452
  [[package]]
453
453
  name = "flate2"
454
- version = "1.1.2"
454
+ version = "1.1.4"
455
455
  source = "registry+https://github.com/rust-lang/crates.io-index"
456
- checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
456
+ checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9"
457
457
  dependencies = [
458
458
  "crc32fast",
459
459
  "miniz_oxide",
@@ -947,9 +947,9 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
947
947
 
948
948
  [[package]]
949
949
  name = "lindera"
950
- version = "1.3.2"
950
+ version = "1.4.0"
951
951
  source = "registry+https://github.com/rust-lang/crates.io-index"
952
- checksum = "3a7a4c5973b778eb6cfe2b78e33840c32601e7fddcc9379d764171ea10600337"
952
+ checksum = "737cdbd7df815d8cf5982bc9bbd30344c4964d041f8067c0ab6fbc3db0c924e4"
953
953
  dependencies = [
954
954
  "anyhow",
955
955
  "bincode",
@@ -979,9 +979,9 @@ dependencies = [
979
979
 
980
980
  [[package]]
981
981
  name = "lindera-cc-cedict"
982
- version = "1.3.2"
982
+ version = "1.4.0"
983
983
  source = "registry+https://github.com/rust-lang/crates.io-index"
984
- checksum = "a3f9ca6f3c2d0dd3493eca7917d712a9b2a6ea0a60f0e518d3c5710eee0ab719"
984
+ checksum = "84620141298ea1060835800f116db105596f39ba5fe10bce397133e6cdd981d9"
985
985
  dependencies = [
986
986
  "anyhow",
987
987
  "bincode",
@@ -995,9 +995,9 @@ dependencies = [
995
995
 
996
996
  [[package]]
997
997
  name = "lindera-dictionary"
998
- version = "1.3.2"
998
+ version = "1.4.0"
999
999
  source = "registry+https://github.com/rust-lang/crates.io-index"
1000
- checksum = "88c7e47e42a6831f6a12eca3b91c4ef2c9ab2425c6d6c5ffb51abcd0fec2749e"
1000
+ checksum = "609fd8f72a2ffc1b2a71e9bdb73f723d3c0f676255c37a14b3f4f02981c59437"
1001
1001
  dependencies = [
1002
1002
  "anyhow",
1003
1003
  "bincode",
@@ -1030,9 +1030,9 @@ dependencies = [
1030
1030
 
1031
1031
  [[package]]
1032
1032
  name = "lindera-ipadic"
1033
- version = "1.3.2"
1033
+ version = "1.4.0"
1034
1034
  source = "registry+https://github.com/rust-lang/crates.io-index"
1035
- checksum = "ddc56f00c12483d36cbfd0d5fd51f040a40729cbfe9976da47a77795c2af8220"
1035
+ checksum = "292173f5cea3aa09af01f1b8e163f66e6be3fef7b81466e0efaae3314df56c58"
1036
1036
  dependencies = [
1037
1037
  "anyhow",
1038
1038
  "bincode",
@@ -1046,9 +1046,9 @@ dependencies = [
1046
1046
 
1047
1047
  [[package]]
1048
1048
  name = "lindera-ipadic-neologd"
1049
- version = "1.3.2"
1049
+ version = "1.4.0"
1050
1050
  source = "registry+https://github.com/rust-lang/crates.io-index"
1051
- checksum = "211486971de259f1cb3aa9539f08df6bea7a88bf82280f79614717f3b254899a"
1051
+ checksum = "7bac14263d5d3b0ac7674c0d2321b987230df96f5b3df59d2015491598d6102d"
1052
1052
  dependencies = [
1053
1053
  "anyhow",
1054
1054
  "bincode",
@@ -1062,9 +1062,9 @@ dependencies = [
1062
1062
 
1063
1063
  [[package]]
1064
1064
  name = "lindera-ko-dic"
1065
- version = "1.3.2"
1065
+ version = "1.4.0"
1066
1066
  source = "registry+https://github.com/rust-lang/crates.io-index"
1067
- checksum = "41ccead1eb20dfbcbd0ea45e34a26a32257dd81b5fcd10fb1fb17cf3d78c856f"
1067
+ checksum = "5c1e5bde25a381e689466669f3a6e14e05b55a3fa6b60b98701ae12ca6fba330"
1068
1068
  dependencies = [
1069
1069
  "anyhow",
1070
1070
  "bincode",
@@ -1078,7 +1078,7 @@ dependencies = [
1078
1078
 
1079
1079
  [[package]]
1080
1080
  name = "lindera-python"
1081
- version = "1.2.0"
1081
+ version = "1.3.0"
1082
1082
  dependencies = [
1083
1083
  "lindera",
1084
1084
  "num_cpus",
@@ -1089,9 +1089,9 @@ dependencies = [
1089
1089
 
1090
1090
  [[package]]
1091
1091
  name = "lindera-unidic"
1092
- version = "1.3.2"
1092
+ version = "1.4.0"
1093
1093
  source = "registry+https://github.com/rust-lang/crates.io-index"
1094
- checksum = "07d87dd63970ac24bc41024900101366c2bf9f54e5dbd2c3139d2bf0342a1db8"
1094
+ checksum = "139acd137f64722a1f754f4ed8e824c59ea9b4a0547633444ec94720ebd1efc9"
1095
1095
  dependencies = [
1096
1096
  "anyhow",
1097
1097
  "bincode",
@@ -1164,6 +1164,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
1164
  checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1165
1165
  dependencies = [
1166
1166
  "adler2",
1167
+ "simd-adler32",
1167
1168
  ]
1168
1169
 
1169
1170
  [[package]]
@@ -1500,9 +1501,9 @@ dependencies = [
1500
1501
 
1501
1502
  [[package]]
1502
1503
  name = "regex"
1503
- version = "1.11.3"
1504
+ version = "1.12.2"
1504
1505
  source = "registry+https://github.com/rust-lang/crates.io-index"
1505
- checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c"
1506
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1506
1507
  dependencies = [
1507
1508
  "aho-corasick",
1508
1509
  "memchr",
@@ -1512,9 +1513,9 @@ dependencies = [
1512
1513
 
1513
1514
  [[package]]
1514
1515
  name = "regex-automata"
1515
- version = "0.4.11"
1516
+ version = "0.4.13"
1516
1517
  source = "registry+https://github.com/rust-lang/crates.io-index"
1517
- checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad"
1518
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1518
1519
  dependencies = [
1519
1520
  "aho-corasick",
1520
1521
  "memchr",
@@ -1529,9 +1530,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1529
1530
 
1530
1531
  [[package]]
1531
1532
  name = "reqwest"
1532
- version = "0.12.23"
1533
+ version = "0.12.24"
1533
1534
  source = "registry+https://github.com/rust-lang/crates.io-index"
1534
- checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
1535
+ checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
1535
1536
  dependencies = [
1536
1537
  "base64",
1537
1538
  "bytes",
@@ -1739,6 +1740,12 @@ version = "1.3.0"
1739
1740
  source = "registry+https://github.com/rust-lang/crates.io-index"
1740
1741
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1741
1742
 
1743
+ [[package]]
1744
+ name = "simd-adler32"
1745
+ version = "0.3.7"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1748
+
1742
1749
  [[package]]
1743
1750
  name = "slab"
1744
1751
  version = "0.4.9"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lindera-python"
3
- version = "1.2.0"
3
+ version = "1.3.0"
4
4
  edition = "2024"
5
5
  description = "Python binding for Lindera."
6
6
  documentation = "https://docs.rs/lindera-python"
@@ -44,4 +44,4 @@ serde = { version = "1.0.228", features = ["derive"] }
44
44
  serde_json = "1.0.145"
45
45
  num_cpus = "1.17.0"
46
46
 
47
- lindera = "1.3.2"
47
+ lindera = "1.4.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lindera-python
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.8
6
6
  Classifier: Programming Language :: Python :: 3.9
@@ -137,14 +137,14 @@ files = [
137
137
 
138
138
  [[package]]
139
139
  name = "isort"
140
- version = "6.1.0"
140
+ version = "7.0.0"
141
141
  description = "A Python utility / library to sort Python imports."
142
142
  optional = false
143
- python-versions = ">=3.9.0"
143
+ python-versions = ">=3.10.0"
144
144
  groups = ["dev"]
145
145
  files = [
146
- {file = "isort-6.1.0-py3-none-any.whl", hash = "sha256:58d8927ecce74e5087aef019f778d4081a3b6c98f15a80ba35782ca8a2097784"},
147
- {file = "isort-6.1.0.tar.gz", hash = "sha256:9b8f96a14cfee0677e78e941ff62f03769a06d412aabb9e2a90487b3b7e8d481"},
146
+ {file = "isort-7.0.0-py3-none-any.whl", hash = "sha256:1bcabac8bc3c36c7fb7b98a76c8abb18e0f841a3ba81decac7691008592499c1"},
147
+ {file = "isort-7.0.0.tar.gz", hash = "sha256:5513527951aadb3ac4292a41a16cbc50dd1642432f5e8c20057d414bdafb4187"},
148
148
  ]
149
149
 
150
150
  [package.extras]
@@ -153,26 +153,26 @@ plugins = ["setuptools"]
153
153
 
154
154
  [[package]]
155
155
  name = "maturin"
156
- version = "1.9.4"
156
+ version = "1.9.6"
157
157
  description = "Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages"
158
158
  optional = false
159
159
  python-versions = ">=3.7"
160
160
  groups = ["main"]
161
161
  files = [
162
- {file = "maturin-1.9.4-py3-none-linux_armv6l.whl", hash = "sha256:6ff37578e3f5fdbe685110d45f60af1f5a7dfce70a1e26dfe3810af66853ecae"},
163
- {file = "maturin-1.9.4-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:f3837bb53611b2dafa1c090436c330f2d743ba305ef00d8801a371f4495e7e1b"},
164
- {file = "maturin-1.9.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:4227d627d8e3bfe45877a8d65e9d8351a9d01434549f0da75d2c06a1b570de58"},
165
- {file = "maturin-1.9.4-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:1bb2aa0fa29032e9c5aac03ac400396ddea12cadef242f8967e9c8ef715313a1"},
166
- {file = "maturin-1.9.4-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:a0868d52934c8a5d1411b42367633fdb5cd5515bec47a534192282167448ec30"},
167
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:68b7b833b25741c0f553b78e8b9e095b31ae7c6611533b3c7b71f84c2cb8fc44"},
168
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:08dc86312afee55af778af919818632e35d8d0464ccd79cb86700d9ea560ccd7"},
169
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl", hash = "sha256:ef20ffdd943078c4c3699c29fb2ed722bb6b4419efdade6642d1dbf248f94a70"},
170
- {file = "maturin-1.9.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:368e958468431dfeec80f75eea9639b4356d8c42428b0128444424b083fecfb0"},
171
- {file = "maturin-1.9.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:273f879214f63f79bfe851cd7d541f8150bdbfae5dfdc3c0c4d125d02d1f41b4"},
172
- {file = "maturin-1.9.4-py3-none-win32.whl", hash = "sha256:ed2e54d132ace7e61829bd49709331007dd9a2cc78937f598aa76a4f69b6804d"},
173
- {file = "maturin-1.9.4-py3-none-win_amd64.whl", hash = "sha256:8e450bb2c9afdf38a0059ee2e1ec2b17323f152b59c16f33eb9c74edaf1f9f79"},
174
- {file = "maturin-1.9.4-py3-none-win_arm64.whl", hash = "sha256:7a6f980a9b67a5c13c844c268eabd855b54a6a765df4b4bb07d15a990572a4c9"},
175
- {file = "maturin-1.9.4.tar.gz", hash = "sha256:235163a0c99bc6f380fb8786c04fd14dcf6cd622ff295ea3de525015e6ac40cf"},
162
+ {file = "maturin-1.9.6-py3-none-linux_armv6l.whl", hash = "sha256:26e3ab1a42a7145824210e9d763f6958f2c46afb1245ddd0bab7d78b1f59bb3f"},
163
+ {file = "maturin-1.9.6-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5263dda3f71feef2e4122baf5c4620e4b3710dbb7f2121f85a337182de214369"},
164
+ {file = "maturin-1.9.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:fe78262c2800c92f67d1ce3c0f6463f958a692cc67bfb572e5dbf5b4b696a8ba"},
165
+ {file = "maturin-1.9.6-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:7ab827c6e8c022eb2e1e7fb6deede54549c8460b20ccc2e9268cc6e8cde957a8"},
166
+ {file = "maturin-1.9.6-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:0246202377c49449315305209f45c8ecef6e2d6bd27a04b5b6f1ab3e4ea47238"},
167
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:f5bac167700fbb6f8c8ed1a97b494522554b4432d7578e11403b894b6a91d99f"},
168
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:7f53d3b1d8396d3fea3e1ee5fd37558bca5719090f3d194ba1c02b0b56327ae3"},
169
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl", hash = "sha256:7f506eb358386d94d6ec3208c003130cf4b69cab26034fc0cbbf8bf83afa4c2e"},
170
+ {file = "maturin-1.9.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2d6984ab690af509f525dbd2b130714207c06ebb14a5814edbe1e42b17ae0de"},
171
+ {file = "maturin-1.9.6-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:5c2252b0956bb331460ac750c805ddf0d9b44442449fc1f16e3b66941689d0bc"},
172
+ {file = "maturin-1.9.6-py3-none-win32.whl", hash = "sha256:f2c58d29ebdd4346fd004e6be213d071fdd94a77a16aa91474a21a4f9dbf6309"},
173
+ {file = "maturin-1.9.6-py3-none-win_amd64.whl", hash = "sha256:1b39a5d82572c240d20d9e8be024d722dfb311d330c5e28ddeb615211755941a"},
174
+ {file = "maturin-1.9.6-py3-none-win_arm64.whl", hash = "sha256:ac02a30083553d2a781c10cd6f5480119bf6692fd177e743267406cad2ad198c"},
175
+ {file = "maturin-1.9.6.tar.gz", hash = "sha256:2c2ae37144811d365509889ed7220b0598487f1278c2441829c3abf56cc6324a"},
176
176
  ]
177
177
 
178
178
  [package.extras]
@@ -311,20 +311,20 @@ files = [
311
311
 
312
312
  [[package]]
313
313
  name = "platformdirs"
314
- version = "4.4.0"
314
+ version = "4.5.0"
315
315
  description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
316
316
  optional = false
317
- python-versions = ">=3.9"
317
+ python-versions = ">=3.10"
318
318
  groups = ["dev"]
319
319
  files = [
320
- {file = "platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85"},
321
- {file = "platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf"},
320
+ {file = "platformdirs-4.5.0-py3-none-any.whl", hash = "sha256:e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3"},
321
+ {file = "platformdirs-4.5.0.tar.gz", hash = "sha256:70ddccdd7c99fc5942e9fc25636a8b34d04c24b335100223152c2803e4063312"},
322
322
  ]
323
323
 
324
324
  [package.extras]
325
- docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
326
- test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.4)", "pytest-cov (>=6)", "pytest-mock (>=3.14)"]
327
- type = ["mypy (>=1.14.1)"]
325
+ docs = ["furo (>=2025.9.25)", "proselint (>=0.14)", "sphinx (>=8.2.3)", "sphinx-autodoc-typehints (>=3.2)"]
326
+ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.4.2)", "pytest-cov (>=7)", "pytest-mock (>=3.15.1)"]
327
+ type = ["mypy (>=1.18.2)"]
328
328
 
329
329
  [[package]]
330
330
  name = "pluggy"
@@ -433,4 +433,4 @@ files = [
433
433
  [metadata]
434
434
  lock-version = "2.1"
435
435
  python-versions = "^3.13"
436
- content-hash = "6aef8c5dbd6090736c98acabb4131675a7216549fdadf026eff2be76400a2861"
436
+ content-hash = "febe3a98e034fb67ac9786f059e1ee7f230979b1869d8156c2a43ed1d8c5b013"
@@ -3,7 +3,7 @@ module-name = "lindera"
3
3
 
4
4
  [project]
5
5
  name = "lindera-python"
6
- version = "1.2.0"
6
+ version = "1.3.0"
7
7
  description = "Python binding for Lindera (no embedded dictionaries)"
8
8
  authors = [{ name = "Minoru Osuka", email = "minoru.osuka@gmail.com" }]
9
9
  license = { text = "MIT" }
@@ -24,13 +24,13 @@ requires-python = ">=3.8"
24
24
 
25
25
  [tool.poetry.dependencies]
26
26
  python = "^3.13"
27
- maturin = "^1.9.4"
27
+ maturin = "^1.9.6"
28
28
  patchelf = "^0.17.2.4"
29
29
 
30
30
  [tool.poetry.group.dev.dependencies]
31
31
  pytest = "^8.4.2"
32
32
  black = "^25.9.0"
33
- isort = "^6.1.0"
33
+ isort = "^7.0.0"
34
34
  autopep8 = "^2.3.2"
35
35
  flake8 = "^7.3.0"
36
36
  flake8-pyproject = "^1.2.3"
File without changes
File without changes
File without changes