From cb463381b435b076d53e3fbbf64af2853af627a4 Mon Sep 17 00:00:00 2001 From: Andras Toth Date: Tue, 14 Apr 2026 22:06:40 +1000 Subject: [PATCH] Add Python 3.14 as a supported version --- .github/workflows/test.yml | 2 +- Pipfile | 2 ++ setup.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 609c2ff..c04e6b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: [3.11, 3.12, 3.13] + python-version: [3.11, 3.12, 3.13, 3.14] steps: - uses: actions/checkout@v2 diff --git a/Pipfile b/Pipfile index 1122c45..b906cb7 100644 --- a/Pipfile +++ b/Pipfile @@ -10,5 +10,7 @@ pylint = "*" pytest = "*" [packages] +requests = "*" [requires] +python_version = ">=3.11" diff --git a/setup.py b/setup.py index bfb40ae..f165349 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Operating System :: OS Independent", ], )