Skip to content

Commit

Permalink
Temporarily downgrade the PyPy version used in GA.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon24 committed Feb 26, 2022
1 parent 866b54b commit 94cb0af
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,25 @@ jobs:
fail-fast: false

matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7", "pypy-3.8"]
python-version: [
"3.7", "3.8", "3.9", "3.10",
# PyPy 7.3.8 has a very old version of SQLite
# https://github.com/actions/setup-python/issues/339
# https://foss.heptapod.net/pypy/pypy/-/issues/3690
"pypy-3.7-v7.3.7",
"pypy-3.8-v7.3.7",
]
os: [ubuntu-latest, macos-latest, windows-latest]

exclude:
- os: windows-latest
python-version: "3.7"
- os: windows-latest
python-version: "pypy-3.7"
python-version: "pypy-3.7-v7.3.7"
- os: windows-latest
python-version: "3.8"
- os: windows-latest
python-version: "pypy-3.8"
python-version: "pypy-3.8-v7.3.7"

steps:

Expand Down

0 comments on commit 94cb0af

Please sign in to comment.