From 3e73553bd991835979263968fc82fdf1a1022630 Mon Sep 17 00:00:00 2001 From: SWivid Date: Sun, 22 Dec 2024 11:09:29 +0800 Subject: [PATCH] v0.3.4 --- Dockerfile | 1 - README.md | 6 ------ pyproject.toml | 2 +- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33943fd..021669c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,6 @@ WORKDIR /workspace RUN git clone https://github.com/SWivid/F5-TTS.git \ && cd F5-TTS \ && git submodule update --init --recursive \ - && sed -i '7iimport sys\nsys.path.append(os.path.dirname(os.path.abspath(__file__)))' src/third_party/BigVGAN/bigvgan.py \ && pip install -e . --no-cache-dir ENV SHELL=/bin/bash diff --git a/README.md b/README.md index 9dc301d..c74e016 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,6 @@ cd F5-TTS # git submodule update --init --recursive # (optional, if need bigvgan) pip install -e . ``` -If initialize submodule, you should add the following code at the beginning of `src/third_party/BigVGAN/bigvgan.py`. -```python -import os -import sys -sys.path.append(os.path.dirname(os.path.abspath(__file__))) -``` ### 3. Docker usage ```bash diff --git a/pyproject.toml b/pyproject.toml index c86bd07..de04c3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "f5-tts" -version = "0.3.3" +version = "0.3.4" description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching" readme = "README.md" license = {text = "MIT License"}