Skip to content
Snippets Groups Projects
Commit 539e6a71 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

automatically build on Linux

parent 0a22f272
No related branches found
No related tags found
No related merge requests found
......@@ -13,4 +13,5 @@ install:
- pip install -r requirements.txt
- python setup.py install
after_success:
- cd ..
- bash build.sh
import os
import collections
import typing as tp
import logging
import pkg_resources
from satella.files import split
from mako.template import Template
from setuptools import Extension
logger = logging.getLogger(__name__)
CdefSection = collections.namedtuple('CdefSection', ('h_file_name', 'module_name'))
GetDefinitionSection = collections.namedtuple('GetDefinitionSection', (
......@@ -124,7 +121,6 @@ class Multibuild:
def for_cythonize(self, *args, **kwargs):
for_cythonize = [*self.files, os.path.join(self.bootstrap_directory, '__bootstrap__.pyx')]
logger.warning('For cythonize: %s', for_cythonize)
return Extension(self.extension_name+".__bootstrap__",
for_cythonize,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment