From 0518f7902923e252276030fd039f5533f08a7bda Mon Sep 17 00:00:00 2001 From: Erik Gomez Date: Tue, 12 May 2026 10:44:17 -0500 Subject: [PATCH] tests --- ...05-11-apple-silicon-modernization-tests.md | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 docs/superpowers/plans/2026-05-11-apple-silicon-modernization-tests.md diff --git a/docs/superpowers/plans/2026-05-11-apple-silicon-modernization-tests.md b/docs/superpowers/plans/2026-05-11-apple-silicon-modernization-tests.md new file mode 100644 index 0000000..2033800 --- /dev/null +++ b/docs/superpowers/plans/2026-05-11-apple-silicon-modernization-tests.md @@ -0,0 +1,55 @@ +```bash +sudo rm -rf /Library/ManagedFrameworks/Python +./build_python_framework_pkgs.zsh --python-version 3.9.13 +sudo ditto -x -k outputs/Python3.framework_recommended-3.9.13.*.zip /Library/ManagedFrameworks/Python/ +managed_python3 --version && managed_python3 -c "import platform; print(platform.machine())" && managed_python3 -c "import objc, xattr, requests, yaml; print('ok')" + +Python 3.9.13 +arm64 +ok + +sudo rm -rf /Library/ManagedFrameworks/Python +./build_python_framework_pkgs.zsh --python-version 3.10.11 +sudo ditto -x -k outputs/Python3.framework_recommended-3.10.11.*.zip /Library/ManagedFrameworks/Python/ +managed_python3 --version && managed_python3 -c "import platform; print(platform.machine())" && managed_python3 -c "import objc, xattr, requests, yaml; print('ok')" + +Python 3.10.11 +arm64 +ok + +sudo rm -rf /Library/ManagedFrameworks/Python +./build_python_framework_pkgs.zsh --python-version 3.11.9 +sudo ditto -x -k outputs/Python3.framework_recommended-3.11.9.*.zip /Library/ManagedFrameworks/Python/ +managed_python3 --version && managed_python3 -c "import platform; print(platform.machine())" && managed_python3 -c "import objc, xattr, requests, yaml; print('ok')" + +Python 3.11.9 +arm64 +ok + +sudo rm -rf /Library/ManagedFrameworks/Python +./build_python_framework_pkgs.zsh --python-version 3.12.10 +sudo ditto -x -k outputs/Python3.framework_recommended-3.12.10.*.zip /Library/ManagedFrameworks/Python/ +managed_python3 --version && managed_python3 -c "import platform; print(platform.machine())" && managed_python3 -c "import objc, xattr, requests, yaml; print('ok')" + +Python 3.12.10 +arm64 +ok + +sudo rm -rf /Library/ManagedFrameworks/Python +./build_python_framework_pkgs.zsh --python-version 3.13.13 +sudo ditto -x -k outputs/Python3.framework_recommended-3.13.13.*.zip /Library/ManagedFrameworks/Python/ +managed_python3 --version && managed_python3 -c "import platform; print(platform.machine())" && managed_python3 -c "import objc, xattr, requests, yaml; print('ok')" + +Python 3.13.13 +arm64 +ok + +sudo rm -rf /Library/ManagedFrameworks/Python +./build_python_framework_pkgs.zsh --python-version 3.14.5 +sudo ditto -x -k outputs/Python3.framework_recommended-3.14.5.*.zip /Library/ManagedFrameworks/Python/ +managed_python3 --version && managed_python3 -c "import platform; print(platform.machine())" && managed_python3 -c "import objc, xattr, requests, yaml; print('ok')" + +Python 3.14.5 +arm64 +ok +``` \ No newline at end of file