fugashi 1.5.2.dev0__tar.gz → 1.5.2.dev2__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 (35) hide show
  1. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/macos-build.sh +1 -1
  2. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/entrypoint.sh +1 -1
  3. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/manylinux1.yml +3 -3
  4. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/osx.yml +1 -1
  5. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/PKG-INFO +1 -1
  6. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.egg-info/PKG-INFO +1 -1
  7. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/FUNDING.yml +0 -0
  8. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/actions/build-manylinux/action.yml +0 -0
  9. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/actions/build-manylinux-aarch64/action.yml +0 -0
  10. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/test_manylinux.yml +0 -0
  11. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.github/workflows/windows.yml +0 -0
  12. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/.gitignore +0 -0
  13. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/CITATION.cff +0 -0
  14. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/Dockerfile +0 -0
  15. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/LICENSE +0 -0
  16. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/LICENSE.mecab +0 -0
  17. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/README.md +0 -0
  18. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/__init__.py +0 -0
  19. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/cli.py +0 -0
  20. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/fugashi.pyx +0 -0
  21. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/include/mecab/mecab.h +0 -0
  22. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/mecab.pxd +0 -0
  23. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/tests/test_basic.py +0 -0
  24. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/tests/test_ipadic.py +0 -0
  25. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi/tests/test_nbest.py +0 -0
  26. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.egg-info/SOURCES.txt +0 -0
  27. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.egg-info/dependency_links.txt +0 -0
  28. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.egg-info/entry_points.txt +0 -0
  29. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.egg-info/requires.txt +0 -0
  30. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.egg-info/top_level.txt +0 -0
  31. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi.png +0 -0
  32. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/fugashi_util.py +0 -0
  33. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/pyproject.toml +0 -0
  34. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/setup.cfg +0 -0
  35. {fugashi-1.5.2.dev0 → fugashi-1.5.2.dev2}/setup.py +0 -0
@@ -49,6 +49,6 @@ sudo make install
49
49
  cd ../..
50
50
 
51
51
  python -m pip install --upgrade pip
52
- python -m pip install cibuildwheel==2.23.3
52
+ python -m pip install cibuildwheel==3.2.1
53
53
 
54
54
  python -m cibuildwheel --platform macos --archs x86_64,arm64,universal2 --output-dir dist
@@ -21,7 +21,7 @@ make install
21
21
  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/
22
22
 
23
23
  # Build the wheels
24
- Python="cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313"
24
+ Python="cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313 cp314-cp314"
25
25
  for PYVER in $Python; do
26
26
  # build the wheels
27
27
  /opt/python/$PYVER/bin/pip wheel /github/workspace -w /github/workspace/wheels || { echo "Failed while buiding $PYVER wheel"; exit 1; }
@@ -10,7 +10,7 @@ jobs:
10
10
  - name: Set up Python
11
11
  uses: actions/setup-python@v5
12
12
  with:
13
- python-version: '>=3.9 <3.14'
13
+ python-version: '>=3.9 <3.15'
14
14
  - name: install MeCab
15
15
  run: |
16
16
  git clone --depth=1 https://github.com/taku910/mecab.git
@@ -39,7 +39,7 @@ jobs:
39
39
  - name: Set up Python
40
40
  uses: actions/setup-python@v5
41
41
  with:
42
- python-version: '>=3.9 <3.14'
42
+ python-version: '>=3.9 <3.15'
43
43
  - name: build array of wheels
44
44
  uses: ./.github/workflows/actions/build-manylinux/
45
45
  - name: Upload Wheels
@@ -66,7 +66,7 @@ jobs:
66
66
  - name: Set up Python
67
67
  uses: actions/setup-python@v5
68
68
  with:
69
- python-version: '>=3.9 <3.14'
69
+ python-version: '>=3.9 <3.15'
70
70
  - name: Set up QEMU
71
71
  id: qemu
72
72
  uses: docker/setup-qemu-action@v1
@@ -13,7 +13,7 @@ jobs:
13
13
  - name: Set up python
14
14
  uses: actions/setup-python@v5
15
15
  with:
16
- python-version: '>=3.8 <3.14'
16
+ python-version: '>=3.9 <3.15'
17
17
  - name: Download and build MeCab
18
18
  shell: bash
19
19
  run: |
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fugashi
3
- Version: 1.5.2.dev0
3
+ Version: 1.5.2.dev2
4
4
  Summary: Cython MeCab wrapper for fast, pythonic Japanese tokenization.
5
5
  Author-email: Paul O'Leary McCann <polm@dampfkraft.com>
6
6
  License-Expression: MIT AND BSD-3-Clause
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fugashi
3
- Version: 1.5.2.dev0
3
+ Version: 1.5.2.dev2
4
4
  Summary: Cython MeCab wrapper for fast, pythonic Japanese tokenization.
5
5
  Author-email: Paul O'Leary McCann <polm@dampfkraft.com>
6
6
  License-Expression: MIT AND BSD-3-Clause
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes