1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 04:53:47 -05:00

Add PyPy 7.3.10

This commit is contained in:
Dan Dees
2022-12-05 23:00:32 +03:00
committed by Ivan Pozdeev
parent 73dc5547fc
commit cad18bb332
11 changed files with 400 additions and 109 deletions

View File

@@ -940,7 +940,13 @@ build_package_micropython() {
pypy_architecture() {
case "$(uname -s)" in
"Darwin" ) echo "osx64" ;;
"Darwin" )
case "$(uname -m)" in
"arm64" ) echo "osarm64" ;;
"x86_64" ) echo "osx64" ;;
* ) return 1 ;;
esac
;;
"Linux" )
case "$(uname -m)" in
"armel" ) echo "linux-armel" ;;