Skip to content

Commit

Permalink
chore(action): update default python-versions (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut authored Feb 20, 2024
1 parent 5c82dc5 commit 02aa8e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 02aa8e8

Please sign in to comment.