From 2e22066feb56d4a51583ffa53d589963a68b2b38 Mon Sep 17 00:00:00 2001 From: kngwyu Date: Thu, 8 Oct 2020 14:21:25 +0900 Subject: [PATCH] Do not test PyPy on Windows --- .github/workflows/ci.yml | 4 ++-- examples/rustapi_module/tox.ini | 2 +- examples/word-count/tox.ini | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 032a1a2b..cf73f8c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/examples/rustapi_module/tox.ini b/examples/rustapi_module/tox.ini index fa74ab8e..7a7d545d 100644 --- a/examples/rustapi_module/tox.ini +++ b/examples/rustapi_module/tox.ini @@ -3,7 +3,7 @@ envlist = py35, py36, py37, py38, - pypy36 + pypy3 minversion = 3.4.0 skip_missing_interpreters = true isolated_build = true diff --git a/examples/word-count/tox.ini b/examples/word-count/tox.ini index a6e31299..7a7d545d 100644 --- a/examples/word-count/tox.ini +++ b/examples/word-count/tox.ini @@ -3,7 +3,7 @@ envlist = py35, py36, py37, py38, - pypy35 + pypy3 minversion = 3.4.0 skip_missing_interpreters = true isolated_build = true