We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff56ff commit 9f73fcaCopy full SHA for 9f73fca
Makefile
@@ -56,7 +56,7 @@ install: FORCE
56
dist: dist/${MODULE}-$(VERSION).tar.gz
57
58
dist/${MODULE}-$(VERSION).tar.gz: $(SOURCES)
59
- ./setup.py sdist bdist-wheel
+ ./setup.py sdist bdist_wheel
60
61
## clean : clean up all temporary / machine-generated files
62
clean: FORCE
release-test.sh
@@ -11,7 +11,7 @@ pipver=7.0.2 # minimum required version of pip
11
12
rm -Rf testenv? || /bin/true
13
14
-export HEAD=`git rev-parse HEAD`
+export HEAD=${TRAVIS_PULL_REQUEST_SHA:-$(git rev-parse HEAD)}
15
16
if [ "${RELEASE_SKIP}" != "head" ]
17
then
0 commit comments