Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-engine-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ jobs:
- name: <Setup> Check out the repository
uses: actions/checkout@v4

- name: <Deploy> Change tag to this commit for refreshing the release # c.f. voicevox_engine#854
- name: <Deploy> Change tag to this commit for refreshing the release # ref: https://github.com/VOICEVOX/voicevox_engine/issues/854
run: |
git tag -f ${{ needs.config.outputs.version }}
git push -f --tag
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ default-groups = []
pyopenjtalk = { git = "https://github.com/VOICEVOX/pyopenjtalk", rev = "74703b034dd90a1f199f49bb70bf3b66b1728a86" }

[dependency-groups]
build = ["pyinstaller<6"] # NOTE: PyInstaller6ではmacOSのエディタにバンドルすると動作しなくなる (c.f. #1022)
build = ["pyinstaller<6"] # NOTE: PyInstaller6ではmacOSのエディタにバンドルすると動作しなくなる (ref: https://github.com/VOICEVOX/voicevox_engine/issues/1022)
dev = [
"coveralls>=4.0.1",
"httpx>=0.28.1", # NOTE: required by fastapi.testclient.TestClient (fastapi-slim's unmanaged dependency)
"mypy>=1.10.0",
"pip-audit>=2.7.3",
"pip-licenses==5.0.0", # NOTE: must be specified exactly (c.f. #1281)
"pip-licenses==5.0.0", # NOTE: must be specified exactly (ref: https://github.com/VOICEVOX/voicevox_engine/issues/1281)
"pre-commit>=4.0.1",
"pytest>=8.2.0",
"ruff>=0.11.1",
Expand Down
2 changes: 1 addition & 1 deletion voicevox_engine/core/core_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def _find_version_0_12_core_or_later(core_dir: Path) -> str | None:
- コアライブラリの名前が CORENAME_DICT の定義に従っている

の両方が真のときである。
cf. https://github.com/VOICEVOX/voicevox_engine/issues/385
ref: https://github.com/VOICEVOX/voicevox_engine/issues/385
"""
if (core_dir / "metas.json").exists():
return None
Expand Down