Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/bump_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
issues: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.0

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"

- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
uses: astral-sh/setup-uv@v8.3.2
with:
version: "0.11.x"
enable-cache: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.0

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"

- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
uses: astral-sh/setup-uv@v8.3.2
with:
version: "0.11.x"
enable-cache: true
Expand All @@ -38,11 +38,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14", "3.15-dev"]
fail-fast: false

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.0

- name: Get Non-Hyphenated Python Version
id: get-pyver
Expand All @@ -62,7 +62,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
uses: astral-sh/setup-uv@v8.3.2
with:
version: "0.11.x"
enable-cache: true
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
needs: test

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.0

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7.0.0

- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
uses: astral-sh/setup-uv@v8.3.2
with:
version: "0.11.x"
enable-cache: true
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ ci:

repos:
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
rev: 26.5.1
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 8.0.1
rev: 9.0.0b1
hooks:
- id: isort
name: isort
Expand Down Expand Up @@ -36,6 +36,6 @@ repos:
- id: python-check-blanket-type-ignore
- id: python-use-type-annotations
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.9
rev: v0.15.21
hooks:
- id: ruff-check
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,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 All @@ -43,7 +44,7 @@ dev = [
"flake8-annotations~=3.1",
"flake8-define-class-attributes~=0.2",
"isort~=8.0",
"mypy~=1.14",
"mypy~=2.2",
"pre-commit~=4.0",
"pytest~=9.0",
"pytest-cov~=7.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude_also =
if __name__ == "__main__":

[tox]
envlist = clean,py{3.11,3.12,3.13,3.14}
envlist = clean,py{3.11,3.12,3.13,3.14,3.15}
isolated_build = True
skip_missing_interpreters = True
requires =
Expand Down
1,103 changes: 561 additions & 542 deletions uv.lock

Large diffs are not rendered by default.

Loading