Skip to content

Commit

Permalink
fix for wfw-1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cociweb committed Jan 25, 2024
1 parent 7eb9be3 commit 46a5836
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions custom_whisper/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ WORKDIR /usr/local/lib/python3.11/dist-packages/wyoming_faster_whisper/
COPY replacables/download.py ./
COPY replacables/__main__.py ./
COPY replacables/handler.py ./
COPY replacables/VERSION ./
COPY replacables/_init__.py ./

LABEL org.opencontainers.image.source https://github.com/cociweb/custom_whisper

Expand Down
1 change: 1 addition & 0 deletions custom_whisper/replacables/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.1.0
9 changes: 9 additions & 0 deletions custom_whisper/replacables/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"""Wyoming server for faster-whisper."""
from pathlib import Path

_DIR = Path(__file__).parent
_VERSION_PATH = _DIR / "VERSION"

__version__ = _VERSION_PATH.read_text(encoding="utf-8").strip()

__all__ = ["__version__"]
1 change: 1 addition & 0 deletions standalone_whisper/common/replacables/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.1.0
9 changes: 9 additions & 0 deletions standalone_whisper/common/replacables/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"""Wyoming server for faster-whisper."""
from pathlib import Path

_DIR = Path(__file__).parent
_VERSION_PATH = _DIR / "VERSION"

__version__ = _VERSION_PATH.read_text(encoding="utf-8").strip()

__all__ = ["__version__"]

0 comments on commit 46a5836

Please sign in to comment.