add example with non pip python package

This commit is contained in:
Grzegorz Bokota
2020-03-07 12:24:15 +01:00
parent d613a8c1a6
commit baba7706e0
+3
View File
@@ -362,6 +362,9 @@ CIBW_BEFORE_TEST: CC=gcc CXX=g++ pip install -r requirements.txt
# chain commands using &&
CIBW_BEFORE_TEST : rm -rf ./data/cache && mkdir -p ./data/cache
# install non pip python package
CIBW_BEFORE_TEST: cd some_dir; ./configure; make; make install
# install python packages that are required to install test dependencies
CIBW_BEFORE_TEST: pip install cmake scikit-build
```