From b0512ac14d0c04bc69f15d2d62696b31351838ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Sat, 6 Sep 2025 19:23:32 -0700 Subject: [PATCH 1/2] Support for Python 3.14 --- .github/workflows/test.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a27bb8..4b83127 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ubuntu, macos, windows] python-version: - ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"] + ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev", "pypy-3.9", "pypy-3.10"] steps: - uses: actions/checkout@v5 diff --git a/pyproject.toml b/pyproject.toml index 936f8fb..27b03e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] description = "Makes it easy to load subpackages and functions on demand." dependencies = [ From 58f7bd55051d560b83181403c15c20b90dfe4fa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Sat, 6 Sep 2025 19:34:56 -0700 Subject: [PATCH 2/2] Making pre-commit nitpicking happy... --- .github/workflows/test.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b83127..8d05509 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,16 @@ jobs: matrix: os: [ubuntu, macos, windows] python-version: - ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev", "pypy-3.9", "pypy-3.10"] + [ + "3.9", + "3.10", + "3.11", + "3.12", + "3.13", + "3.14-dev", + "pypy-3.9", + "pypy-3.10", + ] steps: - uses: actions/checkout@v5