Skip to content

Commit 73bcf79

Browse files
committed
Change manifest to include anything under */templates/*.
I'm not 100% what's going on, but I think the `recursive-include` statements are somehow bound to unixy paths, as they weren't being included in the built package on Windows. Should address [this issue](tensorflow/tensorflow#53216).
1 parent 96a0845 commit 73bcf79

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
recursive-include tools/tensorflow_docs/api_generator/gen_java/ *
2-
recursive-include tools/tensorflow_docs/api_generator/templates/ *
1+
global-include **/templates/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
'Topic :: Scientific/Engineering :: Artificial Intelligence',
6767
],
6868
keywords='tensorflow api reference',
69-
# Include_package_data is required for setup.py to recognize the MAINFEST.in
69+
# Include_package_data is required for setup.py to recognize the MANIFEST.in
7070
# https://python-packaging.readthedocs.io/en/latest/non-code-files.html
7171
include_package_data=True,
7272
)

0 commit comments

Comments
 (0)