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: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ['pypy3.11', '3.10', '3.11', '3.12']
python: ['pypy3.11', '3.10', '3.11', '3.12', '3.13', '3.14']
toxenv: [py]
include:
# windows
- os: windows-latest
python: '3.12'
python: '3.14'
toxenv: py
# typing
- os: ubuntu-latest
python: '3.10'
toxenv: typing
# misc
- os: ubuntu-latest
python: '3.12'
python: '3.14'
toxenv: docs
- os: ubuntu-latest
python: '3.12'
python: '3.14'
toxenv: pre-commit
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py310-plus]
- repo: https://github.com/pycqa/flake8
rev: 7.3.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{310,311,312},lint,typing
envlist = py{310,311,312,313,314},lint,typing

[testenv]
pip_pre = False
Expand Down