From 6c7f5cd398cf0f8c702e00f74b5d78f33fe6101b Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 17 Feb 2024 12:23:20 +0100 Subject: [PATCH] chore(action): update default python-versions --- .github/workflows/action.yml | 2 +- action.yml | 2 +- noxfile.py | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index a7d98277..e5b12a7a 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -39,5 +39,5 @@ jobs: python-version: 3.9 - uses: ./ with: - python-versions: "3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9-v7.3.9" + python-versions: "3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9, pypy-3.10" - run: nox --non-interactive --error-on-missing-interpreter --session github_actions_all_tests diff --git a/action.yml b/action.yml index 6b230160..c89eda25 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: python-versions: description: "comma-separated list of python versions to install" required: false - default: "3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.7, pypy-3.8, pypy-3.9" + default: "3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.9, pypy-3.10" branding: icon: package color: blue diff --git a/noxfile.py b/noxfile.py index 3ebed4b6..7fac569b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -132,15 +132,13 @@ def _check_python_version(session: nox.Session) -> None: @nox.session( python=[ - "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", - "pypy3.7", - "pypy3.8", "pypy3.9", + "pypy3.10", ] ) def github_actions_default_tests(session: nox.Session) -> None: @@ -161,6 +159,7 @@ def github_actions_default_tests(session: nox.Session) -> None: "pypy3.7", "pypy3.8", "pypy3.9", + "pypy3.10", ] ) def github_actions_all_tests(session: nox.Session) -> None: