lindera-python 1.3.2__tar.gz → 1.4.1__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.3.2 → lindera_python-1.4.1}/.github/workflows/periodic.yml +2 -2
  2. {lindera_python-1.3.2 → lindera_python-1.4.1}/.github/workflows/regression.yml +2 -2
  3. {lindera_python-1.3.2 → lindera_python-1.4.1}/.github/workflows/release.yml +19 -19
  4. {lindera_python-1.3.2 → lindera_python-1.4.1}/Cargo.lock +435 -86
  5. {lindera_python-1.3.2 → lindera_python-1.4.1}/Cargo.toml +3 -3
  6. {lindera_python-1.3.2 → lindera_python-1.4.1}/PKG-INFO +1 -1
  7. {lindera_python-1.3.2 → lindera_python-1.4.1}/poetry.lock +77 -77
  8. {lindera_python-1.3.2 → lindera_python-1.4.1}/pyproject.toml +1 -1
  9. {lindera_python-1.3.2 → lindera_python-1.4.1}/.github/FUNDING.yml +0 -0
  10. {lindera_python-1.3.2 → lindera_python-1.4.1}/.github/dependabot.yml +0 -0
  11. {lindera_python-1.3.2 → lindera_python-1.4.1}/.gitignore +0 -0
  12. {lindera_python-1.3.2 → lindera_python-1.4.1}/CHANGES.md +0 -0
  13. {lindera_python-1.3.2 → lindera_python-1.4.1}/LICENSE +0 -0
  14. {lindera_python-1.3.2 → lindera_python-1.4.1}/Makefile +0 -0
  15. {lindera_python-1.3.2 → lindera_python-1.4.1}/README.md +0 -0
  16. {lindera_python-1.3.2 → lindera_python-1.4.1}/examples/build_ipadic.py +0 -0
  17. {lindera_python-1.3.2 → lindera_python-1.4.1}/examples/tokenize.py +0 -0
  18. {lindera_python-1.3.2 → lindera_python-1.4.1}/examples/tokenize_with_decompose.py +0 -0
  19. {lindera_python-1.3.2 → lindera_python-1.4.1}/examples/tokenize_with_filters.py +0 -0
  20. {lindera_python-1.3.2 → lindera_python-1.4.1}/examples/tokenize_with_userdict.py +0 -0
  21. {lindera_python-1.3.2 → lindera_python-1.4.1}/examples/train_and_export.py +0 -0
  22. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/bocchan.txt +0 -0
  23. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/cc-cedict_metadata.json +0 -0
  24. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/cc-cedict_simple_userdic.bin +0 -0
  25. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/cc-cedict_simple_userdic.csv +0 -0
  26. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic-neologd_metadata.json +0 -0
  27. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_detailed_userdic.csv +0 -0
  28. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_metadata.json +0 -0
  29. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_mixed_userdic.csv +0 -0
  30. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_simple_userdic.bin +0 -0
  31. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_simple_userdic.csv +0 -0
  32. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_userdic_insufficient_number_of_fields.csv +0 -0
  33. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ipadic_userdic_invalid_word_cost.csv +0 -0
  34. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ko-dic_metadata.json +0 -0
  35. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ko-dic_simple_userdic.bin +0 -0
  36. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/ko-dic_simple_userdic.csv +0 -0
  37. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/lindera.yml +0 -0
  38. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/unidic_metadata.json +0 -0
  39. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/unidic_simple_userdic.bin +0 -0
  40. {lindera_python-1.3.2 → lindera_python-1.4.1}/resources/unidic_simple_userdic.csv +0 -0
  41. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/dictionary.rs +0 -0
  42. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/error.rs +0 -0
  43. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/lib.rs +0 -0
  44. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/metadata.rs +0 -0
  45. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/mode.rs +0 -0
  46. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/schema.rs +0 -0
  47. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/tokenizer.rs +0 -0
  48. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/trainer.rs +0 -0
  49. {lindera_python-1.3.2 → lindera_python-1.4.1}/src/util.rs +0 -0
  50. {lindera_python-1.3.2 → lindera_python-1.4.1}/tests/__init__py +0 -0
  51. {lindera_python-1.3.2 → lindera_python-1.4.1}/tests/test_tokenize_ipadic.py +0 -0
  52. {lindera_python-1.3.2 → lindera_python-1.4.1}/tests/test_trainer.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@v5
20
+ uses: actions/checkout@v6
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@v5
50
+ uses: actions/checkout@v6
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@v5
23
+ uses: actions/checkout@v6
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@v5
53
+ uses: actions/checkout@v6
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@v5
25
+ uses: actions/checkout@v6
26
26
 
27
27
  - name: Install toolchain
28
28
  uses: dtolnay/rust-toolchain@v1
@@ -42,8 +42,8 @@ jobs:
42
42
  platform:
43
43
  - runner: ubuntu-latest
44
44
  target: x86_64-unknown-linux-gnu
45
- # - runner: macOS-latest
46
- # target: x86_64-apple-darwin
45
+ - runner: macOS-latest
46
+ target: x86_64-apple-darwin
47
47
  - runner: macOS-latest
48
48
  target: aarch64-apple-darwin
49
49
  - runner: windows-latest
@@ -57,7 +57,7 @@ jobs:
57
57
  runs-on: ${{ matrix.platform.runner }}
58
58
  steps:
59
59
  - name: Run checkout
60
- uses: actions/checkout@v5
60
+ uses: actions/checkout@v6
61
61
 
62
62
  - name: Install toolchain
63
63
  uses: dtolnay/rust-toolchain@v1
@@ -101,7 +101,7 @@ jobs:
101
101
  runs-on: ${{ matrix.platform.runner }}
102
102
  steps:
103
103
  - name: Run checkout
104
- uses: actions/checkout@v5
104
+ uses: actions/checkout@v6
105
105
 
106
106
  - name: Setup Python
107
107
  uses: actions/setup-python@v6
@@ -126,7 +126,7 @@ jobs:
126
126
  before-script-linux: "yum install openssl-devel devtoolset-10-libatomic-devel perl-IPC-Cmd -y"
127
127
 
128
128
  - name: Upload wheels
129
- uses: actions/upload-artifact@v4
129
+ uses: actions/upload-artifact@v6
130
130
  with:
131
131
  name: wheels-${{ matrix.features.package_name }}-linux-${{ matrix.platform.target }}-${{ github.ref_name }}
132
132
  path: dist
@@ -163,7 +163,7 @@ jobs:
163
163
  runs-on: ${{ matrix.platform.runner }}
164
164
  steps:
165
165
  - name: Run checkout
166
- uses: actions/checkout@v5
166
+ uses: actions/checkout@v6
167
167
 
168
168
  - name: Setup Python
169
169
  uses: actions/setup-python@v6
@@ -188,7 +188,7 @@ jobs:
188
188
  before-script-linux: "apt-get update && apt-get install libssl-dev pkg-config -y"
189
189
 
190
190
  - name: Upload wheels
191
- uses: actions/upload-artifact@v4
191
+ uses: actions/upload-artifact@v6
192
192
  with:
193
193
  name: wheels-${{ matrix.features.package_name }}-linux-${{ matrix.platform.target }}-${{ github.ref_name }}
194
194
  path: dist
@@ -225,7 +225,7 @@ jobs:
225
225
  runs-on: ${{ matrix.platform.runner }}
226
226
  steps:
227
227
  - name: Run checkout
228
- uses: actions/checkout@v5
228
+ uses: actions/checkout@v6
229
229
 
230
230
  - name: Setup Python
231
231
  uses: actions/setup-python@v6
@@ -252,7 +252,7 @@ jobs:
252
252
  sccache: "true"
253
253
 
254
254
  - name: Upload wheels
255
- uses: actions/upload-artifact@v4
255
+ uses: actions/upload-artifact@v6
256
256
  with:
257
257
  name: wheels-${{ matrix.features.package_name }}-windows-${{ matrix.platform.target }}-${{ github.ref_name }}
258
258
  path: dist
@@ -264,8 +264,8 @@ jobs:
264
264
  max-parallel: 1
265
265
  matrix:
266
266
  platform:
267
- # - runner: macos-latest
268
- # target: x86_64
267
+ - runner: macos-latest
268
+ target: x86_64
269
269
  - runner: macos-latest
270
270
  target: aarch64
271
271
  toolchain: [stable]
@@ -291,7 +291,7 @@ jobs:
291
291
  runs-on: ${{ matrix.platform.runner }}
292
292
  steps:
293
293
  - name: Run checkout
294
- uses: actions/checkout@v5
294
+ uses: actions/checkout@v6
295
295
 
296
296
  - name: Setup Python
297
297
  uses: actions/setup-python@v6
@@ -314,7 +314,7 @@ jobs:
314
314
  sccache: "true"
315
315
 
316
316
  - name: Upload wheels
317
- uses: actions/upload-artifact@v4
317
+ uses: actions/upload-artifact@v6
318
318
  with:
319
319
  name: wheels-${{ matrix.features.package_name }}-macos-${{ matrix.platform.target }}-${{ github.ref_name }}
320
320
  path: dist
@@ -323,7 +323,7 @@ jobs:
323
323
  runs-on: ubuntu-latest
324
324
  steps:
325
325
  - name: Run checkout
326
- uses: actions/checkout@v5
326
+ uses: actions/checkout@v6
327
327
 
328
328
  - name: Build sdist
329
329
  uses: PyO3/maturin-action@v1
@@ -332,7 +332,7 @@ jobs:
332
332
  args: --out dist
333
333
 
334
334
  - name: Upload sdist
335
- uses: actions/upload-artifact@v4
335
+ uses: actions/upload-artifact@v6
336
336
  with:
337
337
  name: wheels-sdist
338
338
  path: dist
@@ -352,7 +352,7 @@ jobs:
352
352
  attestations: write
353
353
  steps:
354
354
  - name: Download build artifacts
355
- uses: actions/download-artifact@v5
355
+ uses: actions/download-artifact@v7
356
356
 
357
357
  - name: Generate artifact attestation
358
358
  uses: actions/attest-build-provenance@v3
@@ -381,7 +381,7 @@ jobs:
381
381
  id-token: write
382
382
  steps:
383
383
  - name: Download build artifacts
384
- uses: actions/download-artifact@v5
384
+ uses: actions/download-artifact@v7
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@v5
406
+ uses: actions/checkout@v6
407
407
 
408
408
  - name: Install toolchain
409
409
  uses: dtolnay/rust-toolchain@v1