lindera-python 1.1.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.
- {lindera_python-1.1.0 → lindera_python-1.3.0}/.github/workflows/periodic.yml +2 -2
- {lindera_python-1.1.0 → lindera_python-1.3.0}/.github/workflows/regression.yml +2 -2
- {lindera_python-1.1.0 → lindera_python-1.3.0}/.github/workflows/release.yml +15 -15
- {lindera_python-1.1.0 → lindera_python-1.3.0}/Cargo.lock +504 -45
- {lindera_python-1.1.0 → lindera_python-1.3.0}/Cargo.toml +7 -5
- {lindera_python-1.1.0 → lindera_python-1.3.0}/Makefile +7 -6
- {lindera_python-1.1.0 → lindera_python-1.3.0}/PKG-INFO +60 -1
- {lindera_python-1.1.0 → lindera_python-1.3.0}/README.md +59 -0
- lindera_python-1.3.0/examples/train_and_export.py +208 -0
- lindera_python-1.3.0/poetry.lock +436 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/pyproject.toml +5 -5
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/lib.rs +8 -0
- lindera_python-1.3.0/src/trainer.rs +262 -0
- lindera_python-1.3.0/tests/test_trainer.py +207 -0
- lindera_python-1.1.0/poetry.lock +0 -420
- {lindera_python-1.1.0 → lindera_python-1.3.0}/.github/FUNDING.yml +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/.github/dependabot.yml +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/.gitignore +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/CHANGES.md +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/LICENSE +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/examples/build_ipadic.py +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/examples/tokenize.py +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/examples/tokenize_with_decompose.py +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/examples/tokenize_with_filters.py +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/examples/tokenize_with_userdict.py +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/bocchan.txt +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/cc-cedict_metadata.json +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/cc-cedict_simple_userdic.bin +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/cc-cedict_simple_userdic.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic-neologd_metadata.json +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_detailed_userdic.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_metadata.json +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_mixed_userdic.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_simple_userdic.bin +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_simple_userdic.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ko-dic_metadata.json +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ko-dic_simple_userdic.bin +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/ko-dic_simple_userdic.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/lindera.yml +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/unidic_metadata.json +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/unidic_simple_userdic.bin +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/resources/unidic_simple_userdic.csv +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/dictionary.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/error.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/metadata.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/mode.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/schema.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/tokenizer.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/src/util.rs +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/tests/__init__py +0 -0
- {lindera_python-1.1.0 → lindera_python-1.3.0}/tests/test_tokenize_ipadic.py +0 -0
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
runs-on: ${{ matrix.platform.runner }}
|
|
18
18
|
steps:
|
|
19
19
|
- name: Run checkout
|
|
20
|
-
uses: actions/checkout@
|
|
20
|
+
uses: actions/checkout@v5
|
|
21
21
|
|
|
22
22
|
- name: Install toolchain
|
|
23
23
|
uses: dtolnay/rust-toolchain@v1
|
|
@@ -47,7 +47,7 @@ jobs:
|
|
|
47
47
|
runs-on: ${{ matrix.platform.runner }}
|
|
48
48
|
steps:
|
|
49
49
|
- name: Run checkout
|
|
50
|
-
uses: actions/checkout@
|
|
50
|
+
uses: actions/checkout@v5
|
|
51
51
|
|
|
52
52
|
- name: Install toolchain
|
|
53
53
|
uses: dtolnay/rust-toolchain@v1
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
runs-on: ${{ matrix.platform.runner }}
|
|
21
21
|
steps:
|
|
22
22
|
- name: Run checkout
|
|
23
|
-
uses: actions/checkout@
|
|
23
|
+
uses: actions/checkout@v5
|
|
24
24
|
|
|
25
25
|
- name: Install toolchain
|
|
26
26
|
uses: dtolnay/rust-toolchain@v1
|
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
50
50
|
runs-on: ${{ matrix.platform.runner }}
|
|
51
51
|
steps:
|
|
52
52
|
- name: Run checkout
|
|
53
|
-
uses: actions/checkout@
|
|
53
|
+
uses: actions/checkout@v5
|
|
54
54
|
|
|
55
55
|
- name: Install toolchain
|
|
56
56
|
uses: dtolnay/rust-toolchain@v1
|
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
runs-on: ${{ matrix.platform.runner }}
|
|
23
23
|
steps:
|
|
24
24
|
- name: Run checkout
|
|
25
|
-
uses: actions/checkout@
|
|
25
|
+
uses: actions/checkout@v5
|
|
26
26
|
|
|
27
27
|
- name: Install toolchain
|
|
28
28
|
uses: dtolnay/rust-toolchain@v1
|
|
@@ -57,7 +57,7 @@ jobs:
|
|
|
57
57
|
runs-on: ${{ matrix.platform.runner }}
|
|
58
58
|
steps:
|
|
59
59
|
- name: Run checkout
|
|
60
|
-
uses: actions/checkout@
|
|
60
|
+
uses: actions/checkout@v5
|
|
61
61
|
|
|
62
62
|
- name: Install toolchain
|
|
63
63
|
uses: dtolnay/rust-toolchain@v1
|
|
@@ -101,10 +101,10 @@ jobs:
|
|
|
101
101
|
runs-on: ${{ matrix.platform.runner }}
|
|
102
102
|
steps:
|
|
103
103
|
- name: Run checkout
|
|
104
|
-
uses: actions/checkout@
|
|
104
|
+
uses: actions/checkout@v5
|
|
105
105
|
|
|
106
106
|
- name: Setup Python
|
|
107
|
-
uses: actions/setup-python@
|
|
107
|
+
uses: actions/setup-python@v6
|
|
108
108
|
with:
|
|
109
109
|
python-version: 3.x
|
|
110
110
|
|
|
@@ -163,10 +163,10 @@ jobs:
|
|
|
163
163
|
runs-on: ${{ matrix.platform.runner }}
|
|
164
164
|
steps:
|
|
165
165
|
- name: Run checkout
|
|
166
|
-
uses: actions/checkout@
|
|
166
|
+
uses: actions/checkout@v5
|
|
167
167
|
|
|
168
168
|
- name: Setup Python
|
|
169
|
-
uses: actions/setup-python@
|
|
169
|
+
uses: actions/setup-python@v6
|
|
170
170
|
with:
|
|
171
171
|
python-version: 3.x
|
|
172
172
|
|
|
@@ -225,10 +225,10 @@ jobs:
|
|
|
225
225
|
runs-on: ${{ matrix.platform.runner }}
|
|
226
226
|
steps:
|
|
227
227
|
- name: Run checkout
|
|
228
|
-
uses: actions/checkout@
|
|
228
|
+
uses: actions/checkout@v5
|
|
229
229
|
|
|
230
230
|
- name: Setup Python
|
|
231
|
-
uses: actions/setup-python@
|
|
231
|
+
uses: actions/setup-python@v6
|
|
232
232
|
with:
|
|
233
233
|
python-version: 3.x
|
|
234
234
|
architecture: ${{ matrix.platform.target }}
|
|
@@ -291,10 +291,10 @@ jobs:
|
|
|
291
291
|
runs-on: ${{ matrix.platform.runner }}
|
|
292
292
|
steps:
|
|
293
293
|
- name: Run checkout
|
|
294
|
-
uses: actions/checkout@
|
|
294
|
+
uses: actions/checkout@v5
|
|
295
295
|
|
|
296
296
|
- name: Setup Python
|
|
297
|
-
uses: actions/setup-python@
|
|
297
|
+
uses: actions/setup-python@v6
|
|
298
298
|
with:
|
|
299
299
|
python-version: 3.x
|
|
300
300
|
|
|
@@ -323,7 +323,7 @@ jobs:
|
|
|
323
323
|
runs-on: ubuntu-latest
|
|
324
324
|
steps:
|
|
325
325
|
- name: Run checkout
|
|
326
|
-
uses: actions/checkout@
|
|
326
|
+
uses: actions/checkout@v5
|
|
327
327
|
|
|
328
328
|
- name: Build sdist
|
|
329
329
|
uses: PyO3/maturin-action@v1
|
|
@@ -352,10 +352,10 @@ jobs:
|
|
|
352
352
|
attestations: write
|
|
353
353
|
steps:
|
|
354
354
|
- name: Download build artifacts
|
|
355
|
-
uses: actions/download-artifact@
|
|
355
|
+
uses: actions/download-artifact@v5
|
|
356
356
|
|
|
357
357
|
- name: Generate artifact attestation
|
|
358
|
-
uses: actions/attest-build-provenance@
|
|
358
|
+
uses: actions/attest-build-provenance@v3
|
|
359
359
|
with:
|
|
360
360
|
subject-path: "wheels-*/*"
|
|
361
361
|
|
|
@@ -381,7 +381,7 @@ jobs:
|
|
|
381
381
|
id-token: write
|
|
382
382
|
steps:
|
|
383
383
|
- name: Download build artifacts
|
|
384
|
-
uses: actions/download-artifact@
|
|
384
|
+
uses: actions/download-artifact@v5
|
|
385
385
|
|
|
386
386
|
- name: Publish to PyPI
|
|
387
387
|
uses: PyO3/maturin-action@v1
|
|
@@ -403,7 +403,7 @@ jobs:
|
|
|
403
403
|
runs-on: ${{ matrix.platform.runner }}
|
|
404
404
|
steps:
|
|
405
405
|
- name: Checkout
|
|
406
|
-
uses: actions/checkout@
|
|
406
|
+
uses: actions/checkout@v5
|
|
407
407
|
|
|
408
408
|
- name: Install toolchain
|
|
409
409
|
uses: dtolnay/rust-toolchain@v1
|