Remove TemplateProject subclassing

This commit is contained in:
Joe Rickerby
2020-05-15 12:28:34 +01:00
parent 0411fcc2ae
commit 2e8fe841ec
13 changed files with 43 additions and 43 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import textwrap
from . import utils
from .template_projects import CTemplateProject
from . import template_projects
project_with_skip_asserts = CTemplateProject(
project_with_skip_asserts = template_projects.new_c_project(
setup_py_add=textwrap.dedent(r'''
# explode if run on Python 2.7 or Python 3.7 (these should be skipped)
if sys.version_info[0:2] == (2, 7):