From 92aacc34d6be2cd9dc3cc8cf6a0b02f33437aec8 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 20 Aug 2019 15:29:08 -0500 Subject: [PATCH] Warn about missing submodules, actually this time --- MANIFEST.in | 1 + setup.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index bdb8fc7..668f419 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include COPYING include README.rst +include aksetup_helper.py include codegen_helpers.py include vec_wrappers.py include wrappers.pyf.mako diff --git a/setup.py b/setup.py index af96f4c..604f2bc 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,9 @@ DASH_SEPARATOR = 75 * "-" def main(): + from aksetup_helper import check_git_submodules + check_git_submodules() + import os build_mode = os.environ.get("PYFMMLIB_BUILD_MODE", "openmp-ofast") -- GitLab