From 1bcbc7aeae33f3e07ecdc2a12ec4bced8a73a4fd Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Thu, 29 Apr 2021 23:00:20 +0100 Subject: [PATCH] pypy: use x64 windows in CI for pypy 3.7 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ff4252a..d8ec8eb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,9 +61,9 @@ jobs: # There is no 64-bit pypy on windows for pypy-3.6 - python-version: pypy-3.6 platform: { os: "windows-latest", python-architecture: "x64" } - # pypy on windows for pypy-3.7 coming in next PyPy release + # PyPy 3.7 on Windows doesn't release 32-bit builds any more - python-version: pypy-3.7 - platform: { os: "windows-latest", python-architecture: "x64" } + platform: { os: "windows-latest", python-architecture: "x86" } include: # Test minimal supported Rust version - rust: 1.41.1