From 07eae03e94cbebd3a8bd4d22e8d7042ff583686d Mon Sep 17 00:00:00 2001 From: Jonas Depoix Date: Mon, 11 Nov 2024 12:09:59 +0100 Subject: [PATCH] removed python 3.14 build --- .github/workflows/ci.yml | 4 ++-- poetry.lock | 4 ++-- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bb3dc3..2f8cf2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 @@ -59,5 +59,5 @@ jobs: uses: coverallsapp/github-action@v2 with: parallel-finished: true - carryforward: "run-python-3.8,run-python-3.9,run-python-3.10,run-python-3.11,run-python-3.12,run-python-3.13,run-python-3.14" + carryforward: "run-python-3.8,run-python-3.9,run-python-3.10,run-python-3.11,run-python-3.12,run-python-3.13" diff --git a/poetry.lock b/poetry.lock index d0d5582..5906f03 100644 --- a/poetry.lock +++ b/poetry.lock @@ -411,5 +411,5 @@ zstd = ["zstandard (>=0.18.0)"] [metadata] lock-version = "2.0" -python-versions = ">=3.8,<=3.14" -content-hash = "1fc5fdbba555a4380ff80fda6988a95ecbaa342ca863cf19f8fc8e3df0430ff7" +python-versions = ">=3.8,<3.14" +content-hash = "370c5c5f94f6000e0fdb76190a3aabd5acadf804802ca70dba41787d306799b4" diff --git a/pyproject.toml b/pyproject.toml index 03860b3..f0f43c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ ci-format = "ruff format youtube_transcript_api --check" lint = "ruff check youtube_transcript_api" [tool.poetry.dependencies] -python = ">=3.8,<=3.14" +python = ">=3.8,<3.14" requests = "*" [tool.poetry.group.test]