Skip to content

Commit

Permalink
feat!: fix up #802: remove _load_dlls.py (#933)
Browse files Browse the repository at this point in the history
#898 の続きとして、_load_dll.pyも削除する。
  • Loading branch information
qryxip authored Jan 22, 2025
1 parent 21b8502 commit 193e3a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 21 deletions.
5 changes: 3 additions & 2 deletions crates/voicevox_core_python_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@ VOICEVOX CORE の Python バインディングです。

- Rustup
- Python ≧ 3.10
- Poetry ≧ 1.6
- Poetry ≧ 1.6 <!-- FIXME: 今はv2! -->

```console
poetry install --with dev
```

## ファイル構成

<!-- FIXME: 今はasyncio.pyとblocking.pyに分かれており、_rust.pyiも分割されている -->

```console
.
├── Cargo.toml : Rustプロジェクトとしてのマニフェストファイルです。
├── pyproject.toml
├── python : このディレクトリの内容がwhlに入ります。
│ └── voicevox_core
│ ├── __init__.py
│ ├── _load_dlls.py
│ ├── _models.py
│ ├── __pycache__ : maturin developで生成されます。
│ │ └── …
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""無料で使える中品質なテキスト読み上げソフトウェア、VOICEVOXのコア。"""

from . import _load_dlls # noqa: F401
from ._models import ( # noqa: F401
AccelerationMode,
AccentPhrase,
Expand Down
18 changes: 0 additions & 18 deletions crates/voicevox_core_python_api/python/voicevox_core/_load_dlls.py

This file was deleted.

0 comments on commit 193e3a5

Please sign in to comment.