← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] txpkgupload:update-wheel-command-makefile into txpkgupload:master

 

Ines Almeida has proposed merging txpkgupload:update-wheel-command-makefile into txpkgupload:master.

Commit message:
Add requirements to pip wheel command in make file

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~lazr-developers/txpkgupload/+git/txpkgupload/+merge/444615

This should make the txpkgupload tarball publisher to swift to actually have its dependencies met
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of txpkgupload:update-wheel-command-makefile into txpkgupload:master.
diff --git a/Makefile b/Makefile
index 7a96876..ddd2107 100644
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,8 @@ build-tarball:
 	@echo "Creating deployment tarball at $(TARBALL_BUILD_PATH)"
 	rm -rf $(ENV)
 	$(MAKE) $(ENV)
-	$(PIP) wheel -f $(DEPENDENCY_DIR) --no-index -w $(WHEELS)
+	$(PIP) wheel -f $(DEPENDENCY_DIR) --no-index -w $(WHEELS) \
+		-r bootstrap-requirements.txt -r requirements.txt
 	mkdir -p $(TARBALL_BUILD_DIR)
 	tar -czf $(TARBALL_BUILD_PATH) \
 		--exclude-vcs \

Follow ups