From 74c9afa576305912f131a06e1218611c908e1cee Mon Sep 17 00:00:00 2001 From: Tom Gillam Date: Wed, 16 Apr 2025 17:28:47 +0100 Subject: [PATCH 1/2] don't include temporary cpp files in sdist --- MANIFEST.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 97e75ec0..bcac0ca1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ exclude tests/* +exclude pymoo/cython/*.cpp recursive-include pymoo *.pyx *.pxd -recursive-include pymoo/cython/vendor *.cpp *.h +recursive-include pymoo/cython/vendor *.h include Makefile From 377b185ac88b3e6a3da4d311c645a85132dfe911 Mon Sep 17 00:00:00 2001 From: Tom Gillam Date: Wed, 16 Apr 2025 17:31:28 +0100 Subject: [PATCH 2/2] non recursive --- MANIFEST.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index bcac0ca1..56f75b2f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ exclude tests/* exclude pymoo/cython/*.cpp -recursive-include pymoo *.pyx *.pxd -recursive-include pymoo/cython/vendor *.h +include pymoo/cython/*.pyx +include pymoo/cython/*.pxd +include pymoo/cython/vendor/*.h include Makefile