Commit f5fe945f authored by Yuanle Song's avatar Yuanle Song
Browse files

v0.9.2 fix Makefile: pip wheel needs -w wheelhouse option

parent a24c2090
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
(defproject python/lein-template "0.9.1"
(defproject python/lein-template "0.9.2"
  :description "lein template for a python project"
  :repositories [["snapshots"
                  {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots"
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ deb:
wheel: bootstrap-dev
	@echo "building wheelhouse..."
	$(PIP) install wheel
	$(PIP) wheel -f https://emacsos.com/python/packages/ $(REQUIREMENTS)
	$(PIP) wheel -w wheelhouse -f https://emacsos.com/python/packages/ $(REQUIREMENTS)

check: test
check-coding-style: bootstrap-dev