From 69026b4839f72d9cc06cf53309100deadf4cc30f Mon Sep 17 00:00:00 2001 From: CK-Explorer <121228064+CK-Explorer@users.noreply.github.com> Date: Wed, 10 Dec 2025 02:08:28 +0800 Subject: [PATCH 1/2] fix: update metadata to support Python 3.14 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/version.yml | 2 +- pyproject.toml | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6d4340..80a4eae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: - name: Checkout code diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 38b8a8e..4b9e2ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" - name: Replace relative links in README run: | diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 3c85c25..ed86a2e 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -15,7 +15,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" - name: Upgrade pip run: python -m pip install --upgrade pip diff --git a/pyproject.toml b/pyproject.toml index 0d0c918..9c2321f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ classifiers = [ 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', "Operating System :: OS Independent", ] requires-python = ">=3.10" @@ -41,7 +42,7 @@ dependencies = [ "sentence_transformers>=4.1.0,<6.0", "tqdm>=4.67.1,<5.0", "typer>=0.16.0,<1.0", - "gradio>=5.41.1,<6.0", + "gradio>=5.41.1,<7.0", "nvidia_ml_py>=12.575.51,<14.0", "pandas>=2.3.1,<3.0", "psutil>=7.0.0,<8.0", From d9af238245413066a630e0941389669ea843ed9f Mon Sep 17 00:00:00 2001 From: CK-Explorer <121228064+CK-Explorer@users.noreply.github.com> Date: Wed, 10 Dec 2025 02:10:12 +0800 Subject: [PATCH 2/2] chore: maintain Gradio version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9c2321f..bff69d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ dependencies = [ "sentence_transformers>=4.1.0,<6.0", "tqdm>=4.67.1,<5.0", "typer>=0.16.0,<1.0", - "gradio>=5.41.1,<7.0", + "gradio>=5.41.1,<6.0", "nvidia_ml_py>=12.575.51,<14.0", "pandas>=2.3.1,<3.0", "psutil>=7.0.0,<8.0",