From abf406a79e44870cb1389797a54b1687ef85f18b Mon Sep 17 00:00:00 2001 From: "S.Lott" Date: Fri, 11 Jul 2025 07:00:38 -0700 Subject: [PATCH] Update ci.yaml Add py313 environment. Make 3.13 the default version. --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1859d4f..24c7e5d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,7 +5,7 @@ on: pull_request: env: POETRY_VERSION: "1.8.3" - DEFAULT_PY_VERSION: "3.12" + DEFAULT_PY_VERSION: "3.13" jobs: Lint: @@ -36,6 +36,8 @@ jobs: tox-target: py311 - python-version: "3.12" tox-target: py312 + - python-version: "3.13" + tox-target: py313 steps: - uses: actions/checkout@v2