Skip to content

Commit

Permalink
chore: do not build rapidjson on PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
vytas7 authored and CaselIT committed Sep 10, 2024
1 parent 6d26c60 commit b328e97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements/tests
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ mujson
ujson

# it's slow to compile on emulated architectures; wheels missing for some EoL interpreters
python-rapidjson; platform_machine != 's390x' and platform_machine != 'aarch64'
# (and there is a new issue with building on PyPy in Actions, but we don't really need to test it with PyPy)
python-rapidjson; platform_python_implementation != 'PyPy' and platform_machine != 's390x' and platform_machine != 'aarch64'

# wheels are missing some EoL interpreters and non-x86 platforms; build would fail unless rust is available
orjson; platform_python_implementation != 'PyPy' and platform_machine != 's390x' and platform_machine != 'aarch64'

0 comments on commit b328e97

Please sign in to comment.