From f12b183050142a9bab3edd852612b2c6355e5a2a Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Mon, 6 May 2024 13:01:49 -0400 Subject: [PATCH] add comment about test_command in cibuildwheel --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 2ebbc13..cc15841 100755 --- a/setup.py +++ b/setup.py @@ -32,6 +32,8 @@ def get_extensions(): cfg['define_macros'].append(('__STDC__', 1)) cfg['define_macros'].append(('_CRT_SECURE_NO_WARNINGS', None)) + # importing these extension modules is tested in `.github/workflows/build.yml`; + # when adding new modules here, make sure to add them to the `test_command` entry there return [Extension(str('drizzle.cdrizzle'), sources, **cfg)]