Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f3acaca

Browse files
committed
Fix CircleCI doc build error due to git hash
The CI log error looks like: installed numpy d7ba6de != current repo git version 'd7ba6de0a' So making the left-hand hash one character shorter should fix it. [skip azp] [skip cirrus] [skip actions]
1 parent 0cb6e3b commit f3acaca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ gitwash-update:
8181
#
8282

8383
#SPHINXBUILD="LANG=C sphinx-build"
84-
NUMPYVER:=$(shell $(PYTHON) -c "import numpy; print(numpy.version.git_revision[:10])" 2>/dev/null)
84+
NUMPYVER:=$(shell $(PYTHON) -c "import numpy; print(numpy.version.git_revision[:9])" 2>/dev/null)
8585
GITVER ?= $(shell cd ..; git rev-parse --short HEAD || echo Unknown)
8686

8787
version-check:

0 commit comments

Comments
 (0)