Closed AaronC81 closed 3 years ago
that's... a little concerning? do you know if there's a bug open against pygit2 or pip about that? from inspecting the most recent pygit2 universal2 wheel pygit2-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
(which i am assuming is what pip installed for you), it does seem like there's an x86_64 binary in there, so at a guess this is a pygit2 problem.
i would somewhat prefer passing explicitly --no-binary pygit2
just so its dependencies are still free to come from wheels, but i don't really care that much
Yep, that's the wheel it's using! I've opened an issue over on pygit2.
For reference, M1/ASi-based Runners may be available sometime in 2020l2
pygit2 has merged a PR for universal builds, so we should be able to revert this once there's a new release of pygit2 :)
pygit2 does not ship an ARM binary and tries to use the x86 one, which results in this error on an Apple Silicon chip:
This PR adds an extra note to the the dependency installation part of the README explaining how to fix the issue, by reinstalling pygit2 with
--no-binary
.