Skip to content

Commit 4f8bbd8

Browse files
committed
Fix wheel target dependency in makefile to use source directly
1 parent d2b28a0 commit 4f8bbd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ TARGETS += $(addprefix dist/,$(addsuffix -$(VERSION)-py3-none-any.whl,$(MODULES)
1010

1111
all: $(TARGETS)
1212

13-
dist/%-$(VERSION)-py3-none-any.whl: dist/%-$(VERSION).tar.gz
14-
python -m pip wheel --no-deps --wheel-dir dist $<
13+
dist/%-$(VERSION)-py3-none-any.whl: %
14+
python build_package.py --version $(VERSION) --wheel --outdir dist $<
1515

1616
dist/%-$(VERSION).tar.gz: %
1717
python build_package.py --version $(VERSION) --sdist --outdir dist $<

0 commit comments

Comments
 (0)