mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 21:14:01 +08:00
* rebuild cython extensions when python/cython/distutils version changes
* submodules and boardd
* kalman and transformations
old-commit-hash: 165e14d103
7 lines
278 B
Python
7 lines
278 B
Python
Import('env', 'cython_dependencies')
|
|
|
|
env.Command(['simple_kalman_impl.so'],
|
|
cython_dependencies + ['simple_kalman_impl.pyx', 'simple_kalman_impl.pxd', 'simple_kalman_setup.py'],
|
|
"cd common/kalman && python3 simple_kalman_setup.py build_ext --inplace")
|
|
|