Skip to content

Commit d069284

Browse files
committed
fixed ci/cd
1 parent c377c5c commit d069284

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,15 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-22.04, windows-latest, macos-latest]
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
17+
python-version: [
18+
"3.8",
19+
"3.9",
20+
"3.10",
21+
"3.11",
22+
"3.12",
23+
"pypy-3.9",
24+
"pypy-3.10"
25+
]
1826

1927
steps:
2028
- uses: actions/checkout@v3

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ envlist =
1515
check,
1616
docs,
1717
py{38,39,310,311,312}-{cover,nocov},
18-
pypy{38,39,310}-{cover,nocov},
18+
pypy{39,310}-{cover,nocov},
1919
report
2020
skip_missing_interpreters = true
2121

@@ -26,7 +26,6 @@ basepython =
2626
py310: python3.10
2727
py311: python3.11
2828
py312: python3.12
29-
pypy38: pypy3.8
3029
pypy39: pypy3.9
3130
pypy310: pypy3.10
3231
{clean,check,docs,report}: python3
@@ -83,6 +82,5 @@ python =
8382
3.10: py310-cover,py310-nocov
8483
3.11: py311-cover,py311-nocov
8584
3.12: py312-cover,py312-nocov
86-
pypy-3.8: pypy38-cover,pypy38-nocov
8785
pypy-3.9: pypy39-cover,pypy39-nocov
8886
pypy-3.10: pypy310-cover,pypy310-nocov

0 commit comments

Comments
 (0)