From a4ad2f5d664d34a8dc78eabbd45a48c14800b92b Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Fri, 28 Jun 2019 09:57:51 -0400 Subject: [PATCH] [Cython/Test] Install test subdirs in Cython interface The tests now include subdirectories with data files, so those should be installed with the rest of the data files --- interfaces/cython/setup.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/cython/setup.py.in b/interfaces/cython/setup.py.in index 8b37a2c8e..280b02ac7 100644 --- a/interfaces/cython/setup.py.in +++ b/interfaces/cython/setup.py.in @@ -92,7 +92,7 @@ setup( ], package_data = { 'cantera.data': ['*.*'], - 'cantera.test.data': ['*.*'], + 'cantera.test.data': ['*.*', '*/*.*'], 'cantera.examples': ['*/*.*'], 'cantera': ["@py_extension@", '*.pxd'], },