Created
November 24, 2020 10:26
-
-
Save belonesox/271385f97871d0ad3649c3fded368e1c to your computer and use it in GitHub Desktop.
Issue with nuitka Infinite optimization loop with cv2/skimage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
export PATH="/usr/lib64/ccache:$PATH" | |
python3 -m nuitka --verbose --show-progress --show-scons --standalone --follow-imports --recurse-not-to=astropy --recurse-not-to=sympy --recurse-not-to=dask --recurse-not-to=ipywidgets --recurse-not-to=ipython_genutils --recurse-not-to=ipykernel --recurse-not-to=IPython --recurse-not-to=pexpect --recurse-not-to=nbformat --recurse-not-to=numpydoc --recurse-not-to=matplotlib --recurse-not-to=pandas --recurse-not-to=pytest --recurse-not-to=nose --recurse-not-to=systemd --include-module=skimage --plugin-enable=numpy test-scipy.py >build.log 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import scipy | |
print(scipy.__version__) | |
print(cv2.__version__) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment