From b980775ad9578c05d17149bda2d7a8a6158704e4 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 22 Oct 2024 12:37:13 +0800 Subject: [PATCH] Remove platform test that doesn't make sense any more. --- tests/test_python_install.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/test_python_install.sh b/tests/test_python_install.sh index 8d3df5e2..ef3da366 100644 --- a/tests/test_python_install.sh +++ b/tests/test_python_install.sh @@ -70,13 +70,3 @@ else # not virtualenv ingest "Wrong macpython or pypy pip '$PIP_CMD'" fi fi - -# check macOS version and arch are as expected -distutils_plat=$($PYTHON_EXE -c "import distutils.util; print(distutils.util.get_platform())") -expected_arch=$(macpython_arch_for_version $MB_PYTHON_VERSION) -if [[ $requested_impl == 'cp' ]]; then - expected_tag="macosx-$MB_PYTHON_OSX_VER-$expected_arch" -else - expected_tag="macosx-10.[0-9]+-$expected_arch" -fi -[[ $distutils_plat =~ $expected_tag ]] || ingest