From 6eac52769f1f19b447f5e419bfbfd3244368f29f Mon Sep 17 00:00:00 2001 From: DrewThomasson Date: Sat, 8 Mar 2025 02:19:36 -0500 Subject: [PATCH 1/2] ci: add paths-ignore in workflows --- .github/workflows/docker.yaml | 17 +++++++++++++++++ .github/workflows/pypi-release.yml | 4 ++-- .github/workflows/style_check.yml | 17 +++++++++++++++++ .github/workflows/tests.yml | 25 +++++++++++++++++++++++++ 4 files changed, 61 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 249816a320..874da889cb 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -1,12 +1,29 @@ name: "Docker build and push" on: pull_request: + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' push: branches: - main - dev tags: - v* + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' + jobs: docker-build: name: "Build and push Docker image" diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index ef74c60da6..9dad7f4120 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -4,8 +4,8 @@ on: types: [published] defaults: run: - shell: - bash + shell: bash + jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/style_check.yml b/.github/workflows/style_check.yml index 03426808cc..a13695c5d2 100644 --- a/.github/workflows/style_check.yml +++ b/.github/workflows/style_check.yml @@ -4,8 +4,25 @@ on: push: branches: - main + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' pull_request: types: [opened, synchronize, reopened] + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' + jobs: lint: runs-on: ubuntu-latest diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fdacf0acc9..4d178b0bad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,8 +4,24 @@ on: push: branches: - main + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' pull_request: types: [opened, synchronize, reopened] + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' workflow_dispatch: inputs: trainer_branch: @@ -16,6 +32,15 @@ on: description: "Branch of Coqpit to test" required: false default: "main" + paths-ignore: + - '.gitignore' + - 'CITATION.cff' + - 'CODE_OF_CONDUCT.md' + - 'CONTRIBUTING.md' + - 'LICENSE.txt' + - 'README.md' + - 'images/**' + jobs: unit: runs-on: ubuntu-latest From 9038c63d62ededdc12b8bae71a21f5adf834423c Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Mon, 10 Mar 2025 09:57:51 +0100 Subject: [PATCH 2/2] chore: bump version to 0.26.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 821ddc78d9..83473f411d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ build-backend = "hatchling.build" [project] name = "coqui-tts" -version = "0.25.3" +version = "0.26.0" description = "Deep learning for Text to Speech." readme = "README.md" requires-python = ">=3.10, <3.13"