Skip to content

Commit fde4acc

Browse files
committed
windows: try __init__ travis: skip
1 parent 28b37dc commit fde4acc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,16 @@
6262
setuptools.Extension("threaded._threadpooled", ["threaded/_threadpooled.py"]),
6363
setuptools.Extension("threaded.__init__", ["threaded/__init__.pyx"]),
6464
]
65-
INTERFACES = ["class_decorator.pxd", "_asynciotask.pxd", "_threaded.pxd"]
6665
else:
6766
REQUIRES_OPTIMIZATION = [
6867
setuptools.Extension("threaded.class_decorator", ["threaded/class_decorator.pyx"]),
6968
setuptools.Extension("threaded._base_threaded", ["threaded/_base_threaded.py"]),
69+
setuptools.Extension("threaded._asynciotask", ["threaded/_asynciotask.pyx"]),
7070
setuptools.Extension("threaded._threaded", ["threaded/_threaded.pyx"]),
7171
setuptools.Extension("threaded._threadpooled", ["threaded/_threadpooled.py"]),
72+
setuptools.Extension("threaded.__init__", ["threaded/__init__.pyx"]),
7273
]
73-
INTERFACES = ["class_decorator.pxd", "_threaded.pxd"]
74+
INTERFACES = ["class_decorator.pxd", "_asynciotask.pxd", "_threaded.pxd"]
7475

7576
EXT_MODULES = cythonize(
7677
module_list=REQUIRES_OPTIMIZATION,

0 commit comments

Comments
 (0)