Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# manual dispatch. Enforces the full `make ci` check suite and validates
# the test matrix across all supported Python versions.
#
# Jobs: quality → test (matrix: 3.10–3.14)
# Jobs: quality → test (matrix: 3.10–3.14, 3.15 beta)
# quality: lint, format-check, typecheck, security, license
# Secrets required: none
# ---
Expand Down Expand Up @@ -73,7 +73,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
include:
- python-version: "3.15"
beta: true
continue-on-error: ${{ matrix.beta == true }}

steps:
- name: Checkout repository
Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ uv add ipsdk

Requires Python 3.10+.

## Python Version Support

| Version | Status |
|---------|---------|
| 3.10 | Supported |
| 3.11 | Supported |
| 3.12 | Supported |
| 3.13 | Supported |
| 3.14 | Supported |
| 3.15 | Beta |

## Usage

### Platform — basic auth
Expand Down Expand Up @@ -156,7 +167,7 @@ make format # ruff format
make security # bandit scan
make license # check GPL headers

# Test across Python 3.10–3.14
# Test across Python 3.10–3.15
uv run tox -p auto
```

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Typing :: Typed",
]

Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# This configuration uses tox-uv for faster dependency resolution and installation

[tox]
# Define test environments for Python 3.10, 3.11, 3.12, 3.13, and 3.14
envlist = py310,py311,py312,py313,py314
# Define test environments for Python 3.10, 3.11, 3.12, 3.13, 3.14, and 3.15
envlist = py310,py311,py312,py313,py314,py315
min_version = 4.0
# Use uv for package installation (requires tox-uv plugin)
requires =
Expand Down Expand Up @@ -58,6 +58,10 @@ description = Run tests with Python 3.13
basepython = python3.14
description = Run tests with Python 3.14

[testenv:py315]
basepython = python3.15
description = Run tests with Python 3.15 (beta)

[testenv:coverage]
# Special environment for running tests with coverage
basepython = python3.13
Expand Down