From baec142e623f9e8a4efd93183ac2f7ef15d84b06 Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Wed, 5 Jun 2019 21:09:53 +0100 Subject: _loader/types: move to a cython package Types is a simple module that accounts for a few percent of a basic 'show' operation. Having it cythonized allows us to get better performance without too much wokr --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e68dc383c..e393096b8 100755 --- a/setup.py +++ b/setup.py @@ -399,6 +399,7 @@ def register_cython_module(module_name, dependencies=None): BUILD_EXTENSIONS = [] register_cython_module("buildstream._loader._loader") +register_cython_module("buildstream._loader.types") register_cython_module("buildstream._yaml") register_cython_module("buildstream._variables", dependencies=["buildstream._yaml"]) -- cgit v1.2.1