Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
253 B
10 lines
253 B
1 year ago
|
cd /workdir || exit
|
||
|
python3.10 -m venv venv
|
||
|
source venv/bin/activate
|
||
|
pip install auditwheel
|
||
|
auditwheel show target/wheels/*.whl
|
||
|
pip install --no-index --find-links=target/wheels/ pyoxigraph
|
||
|
rm -r target/wheels
|
||
|
cd python/tests || exit
|
||
|
python -m unittest
|