ci: pin Python 3.10.0-alpha.7

This commit is contained in:
David Hewitt 2021-04-19 23:49:12 +01:00
parent d153bca2c7
commit 75c23eca5f
1 changed files with 6 additions and 1 deletions

View File

@ -45,7 +45,12 @@ jobs:
fail-fast: false # If one platform fails, allow the rest to keep testing.
matrix:
rust: [stable]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev, pypy-3.6, pypy-3.7]
# Github actions has a "bogus" 3.10-beta.1 release which interacts badly
# with pytest (use 3.10-dev again once pytest has released a fix):
# https://github.com/actions/setup-python/issues/207
# https://github.com/pytest-dev/pytest/issues/8539
# python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev, pypy-3.6, pypy-3.7]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-alpha.7, pypy-3.6, pypy-3.7]
platform: [
{ os: "macos-latest", python-architecture: "x64", rust-target: "x86_64-apple-darwin" },
{ os: "ubuntu-latest", python-architecture: "x64", rust-target: "x86_64-unknown-linux-gnu" },