Mercurial > p > roundup > code
changeset 7535:d0577afa2c22
issue2551284 - python 3.12b4 breaks email address parsing
I disabled testing under 3.12 because it as breaking the build.
Apparently the experimental setting wasn't working right. Try tweaking
syntax to see if I can get a full run with a broken 3.12 and still
pass testing.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 13 Jul 2023 19:42:13 -0400 |
| parents | 9b9eb81abef7 |
| children | 2a619360b2aa |
| files | .github/workflows/ci-test.yml |
| diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Jul 13 00:10:44 2023 -0400 +++ b/.github/workflows/ci-test.yml Thu Jul 13 19:42:13 2023 -0400 @@ -34,7 +34,7 @@ # run the finalizer for coveralls even if one or more # experimental matrix runs fail. - # continue-on-error: ${{ matrix.experimental }} + continue-on-error: ${{ matrix.experimental }} #runs-on: ubuntu-latest # use below if running on multiple OS's. @@ -65,9 +65,9 @@ include: # example: if 3.12 fails the jobs still succeeds - #- python-version: 3.12 - # os: ubuntu-22.04 - # experimental: [true] + - python-version: 3.12 + os: ubuntu-22.04 + experimental: true # 3.6 not available on new 22.04 runners, so run on 20.04 ubuntu - python-version: 3.6
