Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude PyPy CI for windows #1215

Merged
merged 1 commit into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/rustapi_module/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist = py35,
py36,
py37,
py38,
pypy36
pypy3
minversion = 3.4.0
skip_missing_interpreters = true
isolated_build = true
Expand Down
2 changes: 1 addition & 1 deletion examples/word-count/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist = py35,
py36,
py37,
py38,
pypy35
pypy3
minversion = 3.4.0
skip_missing_interpreters = true
isolated_build = true
Expand Down