diff --git a/pyproject.toml b/pyproject.toml index 825fb67133188..b17a76d700b89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -162,7 +162,6 @@ before-build = "PACKAGE_DIR={package} bash {package}/scripts/cibw_before_build.s [tool.cibuildwheel.windows] environment = {} before-build = "pip install delvewheel && bash {package}/scripts/cibw_before_build_windows.sh" -before-test = "bash {package}/scripts/cibw_before_test_windows.sh" test-command = """ set PANDAS_CI='1' && \ python -c "import pandas as pd; \ diff --git a/scripts/cibw_before_test_windows.sh b/scripts/cibw_before_test_windows.sh deleted file mode 100644 index 8878e3950452f..0000000000000 --- a/scripts/cibw_before_test_windows.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -# TODO: Delete when there's a NumPy Windows wheel for the free-threaded build on PyPI. -FREE_THREADED_BUILD="$(python -c"import sysconfig; print(bool(sysconfig.get_config_var('Py_GIL_DISABLED')))")" -if [[ $FREE_THREADED_BUILD == "True" ]]; then - python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy -fi