schollz / find3

High-precision indoor positioning framework, version 3.
https://www.internalpositioning.com/doc
MIT License
4.63k stars 363 forks source link

Fix issue with armhf builds by adding a RUN step to install Cython #183

Closed donkawechico closed 4 years ago

donkawechico commented 4 years ago

Overview

Fixes #180 by inserting RUN python3 -m pip install Cython after the python installations, but before SciPy installation.

Considerations

This adds the Cython installation step for ALL architectures, not just arm-based. This should be negligible, however, due to the use of the --install-option="--no-cython-compile" flag (described on PyPi's Cython project page as being ideal for one-off uses of Cython).

schollz commented 4 years ago

Thanks !