Skip to content

Commit

Permalink
disable pypy builds for now
Browse files Browse the repository at this point in the history
  • Loading branch information
PyryM committed Oct 11, 2024
1 parent 3324eac commit d445f96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ manylinux-x86_64-image = "manylinux_2_28"
before-build = "pip install cffi setuptools && cd xgpu && python _build_ext.py"

# Skip 32-bit builds, musl, etc
skip = ["*-win32", "*-manylinux_i686", "*musl*"]
# Skipping pypy builds because of: https://github.com/python-cffi/cffi/issues/117
skip = ["*-win32", "*-manylinux_i686", "*musl*", "pp*"]

# just make sure the library imports for now
test-command = 'python -c "import xgpu"'
Expand Down

0 comments on commit d445f96

Please sign in to comment.