We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc54bd4 commit 10b1150Copy full SHA for 10b1150
.github/workflows/ci-i386.yml
@@ -44,13 +44,15 @@ jobs:
44
cargo
45
cmake
46
cython
47
+ sed
48
49
- name: Install zfp
50
run: |
51
uv venv
52
PYTHON_INCLUDE=$(uv run python -c 'from sysconfig import get_paths; print(get_paths()["include"])');
53
PYTHON_LIB=$(uv run python -c 'import sysconfig; print(sysconfig.get_config_var("LIBDIR"))');
54
git clone https://github.com/LLNL/zfp
55
+ sed -i "s/distutils.sysconfig/sysconfig/g" zfp/python/scikit-build-cmake/FindPythonExtensions.cmake
56
mkdir zfp/build;
57
uv run cmake zfp -B zfp/build -DBUILD_ZFPY=ON -DBUILD_TESTING=OFF -DPYTHON_LIBRARY=$PYTHON_LIB -DPYTHON_INCLUDE_DIR=$PYTHON_INCLUDE
58
uv run make -C zfp/build
0 commit comments