From f185edc3243bd6d28f3a1f35df27a78545199228 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:57:00 +0000 Subject: [PATCH 1/2] Initial plan From c3e8cb054c5e76517f887ab0e458b7b45f795fec Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:02:30 +0000 Subject: [PATCH 2/2] Broaden Python version support to 3.9+ Co-authored-by: somebox <7750+somebox@users.noreply.github.com> --- .github/workflows/test.yml | 2 +- pyproject.toml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7b2bd2f..f9b636b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: contents: read strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - name: Checkout code diff --git a/pyproject.toml b/pyproject.toml index 2cf5f71..7d1a30f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "runcue" version = "0.1.0" description = "A Python library for coordinating work across rate-limited services" readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.9,<3.13" license = "MIT" keywords = ["queue", "orchestration", "rate-limit", "async", "task"] classifiers = [ @@ -15,6 +15,8 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Framework :: AsyncIO", @@ -46,7 +48,7 @@ asyncio_default_fixture_loop_scope = "function" [tool.ruff] line-length = 100 -target-version = "py311" +target-version = "py39" [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"]