From 755784c47c53f32a4b429049a7284e2d4321b583 Mon Sep 17 00:00:00 2001 From: Joongi Kim Date: Sun, 11 Aug 2024 16:53:32 +0900 Subject: [PATCH] mypy: Update the build instruction to exclude broken Python 3.13 builds --- pypi/projects/mypy/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypi/projects/mypy/build.md b/pypi/projects/mypy/build.md index 5b5ce30..fa603bf 100644 --- a/pypi/projects/mypy/build.md +++ b/pypi/projects/mypy/build.md @@ -8,7 +8,7 @@ $ cd mypy_mypyc-wheels $ git checkout ${RELEASE_TAG} $ git clone https://github.com/python/mypy --recurse-submodules $ git -C mypy checkout $(cat mypy_commit) -$ pipx run cibuildwheel --config=cibuildwheel.toml --platform=linux --archs=aarch64 mypy +$ CIBW_BUILD="cp310-* cp311-* cp312-*" pipx run cibuildwheel --config=cibuildwheel.toml --platform=linux --archs=aarch64 mypy ``` The build takes about *two hours* at an aarch64 Linux VM (with 16 GB RAM allocated) running on an Apple Silicon (M1, arm64) machine.