diff options
author | Qiyu8 <fangchunlin@huawei.com> | 2020-12-14 16:35:01 +0800 |
---|---|---|
committer | Qiyu8 <fangchunlin@huawei.com> | 2020-12-14 16:35:01 +0800 |
commit | 4c7b3d64780c0cdfb8279c978d8b5a411995aee4 (patch) | |
tree | 4f98ed596916b9e8f5404939d7a39b86b6da52e6 /numpy/_version.py | |
parent | 30c01122d2631269fa28f057f6723168b64ca783 (diff) | |
parent | e3722cea8adb7b66084a7edbc6afb978c5521c16 (diff) | |
download | numpy-4c7b3d64780c0cdfb8279c978d8b5a411995aee4.tar.gz |
Merge branch 'master' of github.com:numpy/numpy into einsum-dot
Diffstat (limited to 'numpy/_version.py')
-rw-r--r-- | numpy/_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_version.py b/numpy/_version.py index 73f9f5c7f..6605bf4af 100644 --- a/numpy/_version.py +++ b/numpy/_version.py @@ -236,7 +236,7 @@ def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command): # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] # if there isn't one, this yields HEX[-dirty] (no NUM) - describe_out, rc = run_command(GITS, ["describe", "--tags", "--dirty", + describe_out, rc = run_command(GITS, ["describe", "--tags", "--dirty=", "--always", "--long", "--match", "%s*" % tag_prefix], cwd=root) |