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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
- name: install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
19 changes: 11 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
fail-fast: false
matrix:
include:
- python: "3.13"
- python: "3.14"
toxenv: flake8
os: ubuntu-latest
- python: "3.13"
- python: "3.14"
toxenv: mypy
os: ubuntu-latest
- python: "3.13"
- python: "3.14"
toxenv: pylint
os: ubuntu-latest
- python: "3.13"
- python: "3.14"
toxenv: black
os: ubuntu-latest

Expand All @@ -34,6 +34,9 @@ jobs:
- python: "3.13"
toxenv: py313
os: ubuntu-latest
- python: "3.14"
toxenv: py314
os: ubuntu-latest

- python: "pypy3.10"
toxenv: pypy310
Expand All @@ -42,11 +45,11 @@ jobs:
toxenv: pypy311
os: ubuntu-latest

- python: "3.13"
toxenv: py313
- python: "3.14"
toxenv: py314
os: macos-latest
- python: "3.13"
toxenv: py313
- python: "3.14"
toxenv: py314
os: windows-latest

runs-on: ${{ matrix.os }}
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
[tox]
envlist =
flake8, mypy, pylint, black
py{310,311,312,313},
py{310,311,312,313,314},
pypy{310,311}

[default]
basepython=python3.13
basepython=python3.14

[testenv]
description = run test
Expand All @@ -19,6 +19,7 @@ basepython =
py311: python3.11
py312: python3.12
py313: python3.13
py314: python3.14
pypy310: pypy3.10
pypy311: pypy3.11
deps =
Expand Down Expand Up @@ -59,5 +60,5 @@ commands = mypy
description = check that comply with autoformating
basepython = {[default]basepython}
deps =
black
black==25.12.0
commands = black --check --diff .