From f57824b28ba554dffd19f729382dfdbabbe2659a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:13:22 +0000 Subject: [PATCH 1/4] Initial plan From b264e5693e44f340b5019dd3de952bc7df9eb8ba Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:16:10 +0000 Subject: [PATCH 2/4] Update Python support to 3.13, add experimental 3.14, bump version to 0.3 Co-authored-by: somebox <7750+somebox@users.noreply.github.com> --- .github/workflows/test.yml | 7 ++++++- pyproject.toml | 5 +++-- src/runcue/__init__.py | 2 +- src/runcue_sim/__init__.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9b636b..f62253a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,8 +12,13 @@ jobs: permissions: contents: read strategy: + fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + include: + - python-version: "3.14" + experimental: true + continue-on-error: ${{ matrix.experimental || false }} steps: - name: Checkout code diff --git a/pyproject.toml b/pyproject.toml index 7d1a30f..afbd648 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,10 +4,10 @@ build-backend = "hatchling.build" [project] name = "runcue" -version = "0.1.0" +version = "0.3" description = "A Python library for coordinating work across rate-limited services" readme = "README.md" -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9,<3.14" license = "MIT" keywords = ["queue", "orchestration", "rate-limit", "async", "task"] classifiers = [ @@ -19,6 +19,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Framework :: AsyncIO", ] dependencies = [ diff --git a/src/runcue/__init__.py b/src/runcue/__init__.py index cbb2b81..76a7fe6 100644 --- a/src/runcue/__init__.py +++ b/src/runcue/__init__.py @@ -3,5 +3,5 @@ from runcue.cue import Cue from runcue.models import PriorityContext, TaskType, WorkState, WorkUnit -__version__ = "0.2.0" +__version__ = "0.3" __all__ = ["Cue", "WorkUnit", "WorkState", "TaskType", "PriorityContext"] diff --git a/src/runcue_sim/__init__.py b/src/runcue_sim/__init__.py index 30e3375..89260a2 100644 --- a/src/runcue_sim/__init__.py +++ b/src/runcue_sim/__init__.py @@ -1,4 +1,4 @@ """runcue-sim: Interactive simulator for testing runcue.""" -__version__ = "0.3.0" +__version__ = "0.3" From ef925c66091c0f762a41b37dd18af67140a0c2a7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:17:11 +0000 Subject: [PATCH 3/4] Use semantic version format 0.3.0 for consistency Co-authored-by: somebox <7750+somebox@users.noreply.github.com> --- pyproject.toml | 2 +- src/runcue/__init__.py | 2 +- src/runcue_sim/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index afbd648..74e3625 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "runcue" -version = "0.3" +version = "0.3.0" description = "A Python library for coordinating work across rate-limited services" readme = "README.md" requires-python = ">=3.9,<3.14" diff --git a/src/runcue/__init__.py b/src/runcue/__init__.py index 76a7fe6..565af6b 100644 --- a/src/runcue/__init__.py +++ b/src/runcue/__init__.py @@ -3,5 +3,5 @@ from runcue.cue import Cue from runcue.models import PriorityContext, TaskType, WorkState, WorkUnit -__version__ = "0.3" +__version__ = "0.3.0" __all__ = ["Cue", "WorkUnit", "WorkState", "TaskType", "PriorityContext"] diff --git a/src/runcue_sim/__init__.py b/src/runcue_sim/__init__.py index 89260a2..30e3375 100644 --- a/src/runcue_sim/__init__.py +++ b/src/runcue_sim/__init__.py @@ -1,4 +1,4 @@ """runcue-sim: Interactive simulator for testing runcue.""" -__version__ = "0.3" +__version__ = "0.3.0" From b7c23f336a59aeef722b244faba3c22fb419faa4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:18:04 +0000 Subject: [PATCH 4/4] Update requires-python to allow Python 3.14 for experimental testing Co-authored-by: somebox <7750+somebox@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 74e3625..e098e1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "runcue" version = "0.3.0" description = "A Python library for coordinating work across rate-limited services" readme = "README.md" -requires-python = ">=3.9,<3.14" +requires-python = ">=3.9,<3.15" license = "MIT" keywords = ["queue", "orchestration", "rate-limit", "async", "task"] classifiers = [