Skip to content

Commit fc3cb0f

Browse files
committed
execconf/tests/data returns to distrib
1 parent c395b1d commit fc3cb0f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include execconf/tests/data *

execconf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .loader import Loader, ConfigLoader, ValidatorLoader
1212
from .formatters import type2cls
1313

14-
__version__ = (0, 3, 3)
14+
__version__ = (0, 3, 3, 1)
1515

1616
__all__ = ["Config", "Validator", "Builder", "Loader", "ConfigLoader",
1717
"ValidatorLoader"]

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ def get_tests_data():
2626
packages=["execconf",
2727
"execconf.tests",
2828
"execconf.validator"],
29-
package_data={"execconf.tests": get_tests_data()},
29+
include_package_data=True,
30+
# package_data={"execconf.tests": get_tests_data()},
3031
scripts=["bin/execconf"],
3132
test_suite="execconf.tests.all_tests_suite",
3233
classifiers=["License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)