From d2e2a2eb9c44f59b8a78370bc92d88b5ba3b5589 Mon Sep 17 00:00:00 2001 From: Christopher Lambert <1204398+XN137@users.noreply.github.com> Date: Wed, 15 Apr 2026 11:44:47 +0200 Subject: [PATCH] feat: add Python 3.14 support https://docs.python.org/3.14/whatsnew/3.14.html Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26eff2c..b1ef8cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v4 diff --git a/pyproject.toml b/pyproject.toml index bca0a9c..fbb7671 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Database", ] keywords = ["dremio", "dremio-cloud", "cli", "data-lake", "sql", "official"]