From 35a6210afb9fe8a1d298078b0400f610adf9e121 Mon Sep 17 00:00:00 2001 From: Matt Spinola Date: Thu, 23 Jul 2026 14:45:40 -0400 Subject: [PATCH] requires-python >=3.10 (was 3.9); test 3.10-3.14 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 3.9 floor existed for norgatedata, which was only tested through 3.9 when this started. The version in use (norgatedata 1.x) is tested through 3.14, and databento requires >=3.10 — the 3.9 floor now makes the databento extra unresolvable (Dependabot fails). Bump requires-python to >=3.10, ruff target to py310, and the CI matrix to 3.10-3.14 (both databento and norgatedata support that range). Co-Authored-By: Claude Opus 4.8 --- .github/workflows/python-test.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index c575b93..154cf33 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index e2b6356..f7a01fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "pandas>=1.5", "pyarrow>=10", @@ -51,7 +51,7 @@ cotdata = ["*.yaml"] [tool.ruff] line-length = 100 -target-version = "py39" +target-version = "py310" [tool.ruff.lint] select = ["E", "F", "W", "I"]