Skip to content

Commit 02aa8e8

Browse files
authored
chore(action): update default python-versions (#767)
1 parent 5c82dc5 commit 02aa8e8

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
python-version: 3.9
4040
- uses: ./
4141
with:
42-
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"
42+
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"
4343
- run: nox --non-interactive --error-on-missing-interpreter --session github_actions_all_tests

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inputs:
44
python-versions:
55
description: "comma-separated list of python versions to install"
66
required: false
7-
default: "3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.7, pypy-3.8, pypy-3.9"
7+
default: "3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.9, pypy-3.10"
88
branding:
99
icon: package
1010
color: blue

noxfile.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,13 @@ def _check_python_version(session: nox.Session) -> None:
132132

133133
@nox.session(
134134
python=[
135-
"3.7",
136135
"3.8",
137136
"3.9",
138137
"3.10",
139138
"3.11",
140139
"3.12",
141-
"pypy3.7",
142-
"pypy3.8",
143140
"pypy3.9",
141+
"pypy3.10",
144142
]
145143
)
146144
def github_actions_default_tests(session: nox.Session) -> None:
@@ -161,6 +159,7 @@ def github_actions_default_tests(session: nox.Session) -> None:
161159
"pypy3.7",
162160
"pypy3.8",
163161
"pypy3.9",
162+
"pypy3.10",
164163
]
165164
)
166165
def github_actions_all_tests(session: nox.Session) -> None:

0 commit comments

Comments
 (0)