From 700ee3b7ec045d6682305a6b07e04fdeab37e74c Mon Sep 17 00:00:00 2001 From: Michael Penkov Date: Mon, 15 May 2023 00:07:26 +0900 Subject: [PATCH] work around numpy bug https://github.com/numpy/numpy/issues/23104 --- .github/workflows/build-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 62c7fba3ca..e7b15161c4 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -94,7 +94,7 @@ jobs: run: | pip freeze python -c 'import numpy;print(numpy.__file__)' - python -c 'from numpy.core import setup_common;print("0x%02x" % setup_common.C_API_VERSION)' + python -c 'import numpy;print(numpy.__version__)' # # If the wheel was incorrectly built, then this will fail.