Skip to content

Commit

Permalink
remove!: requires-python>=3.10に引き上げる
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Jan 2, 2025
1 parent ef66cc2 commit 6712b8a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 77 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,10 @@ jobs:
for file in ../../example/python/run{,-asyncio}.py; do
poetry run python "$file" ../test_util/data/model/sample.vvm --dict-dir ../test_util/data/open_jtalk_dic_utf_8-1.11
done
# https://github.com/VOICEVOX/voicevox_core/issues/873 が再発しないかの確認
for _ in {1..9}; do
poetry run python ../../example/python/run-asyncio.py ../test_util/data/model/sample.vvm --dict-dir ../test_util/data/open_jtalk_dic_utf_8-1.11
done
build-and-test-java-api:
strategy:
fail-fast: false
Expand Down
78 changes: 3 additions & 75 deletions crates/voicevox_core_python_api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/voicevox_core_python_api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "voicevox_core"
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = ["pydantic>=2.5.2,<3"]
description = "VOICEVOX CORE の Python バインディングです。"
authors = [{ name = "Hiroshiba", email = "[email protected]" }]
Expand Down Expand Up @@ -38,7 +38,7 @@ description = "VOICEVOX CORE の Python バインディングです。"
authors = []

[tool.poetry.dependencies]
python = ">=3.8,<3.13"
python = ">=3.10,<3.13"
pydantic = ">=2.5.2,<3"

[tool.poetry.group.docs.dependencies]
Expand Down

0 comments on commit 6712b8a

Please sign in to comment.