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 48a512d commit 245b930Copy full SHA for 245b930
.github/workflows/build.yml
@@ -78,11 +78,14 @@ jobs:
78
LDFLAGS=-L${{ env.GEO_DIR }}/lib
79
LD_LIBRARY_PATH=${{ env.GEO_DIR }}/lib:$LD_LIBRARY_PATH
80
LIBRARY_PATH=${{ env.GEO_DIR }}/lib:$LIBRARY_PATH
81
+
82
CIBW_REPAIR_WHEEL_COMMAND_LINUX: >
- auditwheel repair --lib-sdir .libs
83
- -w {dest_dir} {wheel} &&
84
- ls -l {dest_dir}/*.whl &&
85
- ls -l {dest_dir}/.libs/
+ mkdir -p {dest_dir}/.libs &&
+ cp ${{ env.GEO_DIR }}/lib/libgeos*.so* {dest_dir}/.libs/ &&
+ auditwheel repair
86
+ --lib-sdir .libs
87
+ -w {dest_dir}
88
+ {wheel}
89
CIBW_TEST_COMMAND: >
90
cd {project} &&
91
pip install pytest pytest-cov &&
0 commit comments