From d4313380ee99140ee6eb1015277e4cae80a7bba9 Mon Sep 17 00:00:00 2001 From: Jasha10 <8935917+Jasha10@users.noreply.github.com> Date: Sun, 15 Aug 2021 18:23:45 -0500 Subject: [PATCH] Update MANIFEST.in to fix packaging issue. (#776) --- MANIFEST.in | 2 ++ news/772.misc | 1 + setup.py | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 news/772.misc diff --git a/MANIFEST.in b/MANIFEST.in index 35b834539..b537ec14a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ include LICENSE include requirements/base.txt recursive-include tests *.py *.pickle +recursive-include build_helpers *.py *.jar +recursive-include omegaconf *.g4 diff --git a/news/772.misc b/news/772.misc new file mode 100644 index 000000000..56f0cc061 --- /dev/null +++ b/news/772.misc @@ -0,0 +1 @@ +Fix a packaging issue (missing sdist dependency) diff --git a/setup.py b/setup.py index b3ea20dc2..fdef9e20e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ Instructions: # Build: rm -rf dist/ omegaconf.egg-info/ - python setup.py sdist bdist_wheel + python -m build # Upload: twine upload dist/* """