Merge pull request #1215 from PyO3/actions-pypy-fix
Exclude PyPy CI for windows
This commit is contained in:
commit
7dadafb31a
|
@ -53,9 +53,9 @@ jobs:
|
|||
{ os: "windows-latest", python-architecture: "x86", rust-target: "i686-pc-windows-msvc" },
|
||||
]
|
||||
exclude:
|
||||
# There is no 64-bit pypy on windows
|
||||
# See https://github.com/PyO3/pyo3/pull/1215 for why.
|
||||
- python-version: pypy3
|
||||
platform: { os: "windows-latest", python-architecture: "x64" }
|
||||
platform: { os: "windows-latest" }
|
||||
include:
|
||||
# Test minimal supported Rust version
|
||||
- rust: 1.39.0
|
||||
|
|
|
@ -3,7 +3,7 @@ envlist = py35,
|
|||
py36,
|
||||
py37,
|
||||
py38,
|
||||
pypy36
|
||||
pypy3
|
||||
minversion = 3.4.0
|
||||
skip_missing_interpreters = true
|
||||
isolated_build = true
|
||||
|
|
|
@ -3,7 +3,7 @@ envlist = py35,
|
|||
py36,
|
||||
py37,
|
||||
py38,
|
||||
pypy35
|
||||
pypy3
|
||||
minversion = 3.4.0
|
||||
skip_missing_interpreters = true
|
||||
isolated_build = true
|
||||
|
|
Loading…
Reference in New Issue