-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Change manifest to include anything under */templates/*
.
#1991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
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).
MANIFEST.in
Outdated
global-include **/templates/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happened to the gen_java
files?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They're gen_java/templates
, so they're covered by this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I see what you mean, the shell script in gen_java wouldn't be covered by this, nor the python includes. I'll double check that now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed now. I've included *.sh across the repo & confirmed it's only added the one file. I think that's fine, under the assumption that we want our shell scripts packaged too.
PTAL
Merge conflict. PTAL. |
I'm not 100% sure 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.