ci: stop allowing failure for pypy 3.10

This commit is contained in:
David Hewitt 2023-07-25 21:24:40 +01:00
parent 7a2fc86186
commit 264cba557a
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ on:
jobs:
build:
continue-on-error: ${{ endsWith(inputs.python-version, '-dev') || contains(fromJSON('["3.7", "pypy3.7", "pypy3.10"]'), inputs.python-version) }}
continue-on-error: ${{ endsWith(inputs.python-version, '-dev') || contains(fromJSON('["3.7", "pypy3.7"]'), inputs.python-version) }}
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v3