mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-23 08:13:53 +08:00
* Added cython bindings for model runners and commonmodel
* Removed cython language_level=3
* loop to set CXXFLAGS for both envs
old-commit-hash: e2e39d100b
7 lines
125 B
Cython
7 lines
125 B
Cython
# distutils: language = c++
|
|
|
|
from .runmodel cimport RunModel as cppRunModel
|
|
|
|
cdef class RunModel:
|
|
cdef cppRunModel * model
|