Compare commits

...

2 commits

Author SHA1 Message Date
copilot-swe-agent[bot]
ce17f6ca53
Run ty only on Python 3.14 in test workflow
Agent-Logs-Url: https://github.com/simonw/sqlite-utils/sessions/ce063abd-6f45-4326-8baa-90c0966ebe18

Co-authored-by: simonw <9599+simonw@users.noreply.github.com>
2026-05-17 23:21:34 +00:00
Simon Willison
d5485459c6
Add Python 3.15-dev to test matrix 2026-05-17 16:17:36 -07:00

View file

@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
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-dev"]
numpy: [0, 1]
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
steps:
@ -46,7 +46,7 @@ jobs:
- name: run flake8
run: flake8
- name: run ty
if: matrix.os != 'windows-latest'
if: matrix.os != 'windows-latest' && matrix.python-version == '3.14'
run: |
pip install uv
uv run ty check sqlite_utils