From f1fb3d76abea996ed90fd3d33516b3ff73f552a7 Mon Sep 17 00:00:00 2001 From: Tyson Clugg Date: Wed, 14 Oct 2015 01:54:45 +1100 Subject: [PATCH] Correct path for .whl files in Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 543eed0..17c067d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ NAME := $(shell python setup.py --name) VERSION := $(shell python setup.py --version) SDIST := dist/${NAME}-${VERSION}.tar.gz -WHEEL := dist/${NAME}-${VERSION}-py2.py3-none-any.whl +WHEEL := dist/$(subst -,_,${NAME})-${VERSION}-py2.py3-none-any.whl .PHONY: all test clean clean-docs upload-docs upload-pypi dist docs