forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Do not build PyTorch if `setup.py` is called with 'sdist' option Regenerate bundled license while sdist package is being built Refactor `check_submodules` out of `build_deps` and check that submodules project are present during source package build stage. Test that sdist package is configurable during `asan-build` step Fixes pytorch#52843 Pull Request resolved: pytorch#52908 Reviewed By: walterddr Differential Revision: D26685176 Pulled By: malfet fbshipit-source-id: 972a40ae36e194c0b4e0fc31c5e1af1e7a815185
- Loading branch information
1 parent
b5ae8e6
commit 272dfc7
Showing
4 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
include MANIFEST.in | ||
include CMakeLists.txt | ||
include CITATION | ||
include LICENSE | ||
include NOTICE | ||
include .gitmodules | ||
include mypy.ini | ||
include requirements.txt | ||
include version.txt | ||
recursive-include android *.* | ||
recursive-include aten *.* | ||
recursive-include binaries *.* | ||
recursive-include c10 *.* | ||
recursive-include caffe2 *.* | ||
recursive-include cmake *.* | ||
recursive-include torch *.* | ||
recursive-include tools *.* | ||
recursive-include test *.* | ||
recursive-include docs *.* | ||
recursive-include ios *.* | ||
recursive-include third_party * | ||
recursive-include test *.* | ||
recursive-include benchmarks *.* | ||
recursive-include scripts *.* | ||
recursive-include mypy_plugins *.* | ||
recursive-include modules *.* | ||
prune */__pycache__ | ||
global-exclude *.o *.so *.dylib *.a .git *.pyc *.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters