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..e098e1d 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.0" 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.15" 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..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.2.0" +__version__ = "0.3.0" __all__ = ["Cue", "WorkUnit", "WorkState", "TaskType", "PriorityContext"]