diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-02-07 20:55:56 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2021-02-07 21:25:21 -0700 |
commit | 5303c7a4f9ff7309406e6d2492b15db88ec8476d (patch) | |
tree | 8dbfbc72c7e56f5cd1b2a0745e62c424d432e496 | |
parent | 3e2406a51845dbefd696d596fd2e0961b92ed09a (diff) | |
download | numpy-5303c7a4f9ff7309406e6d2492b15db88ec8476d.tar.gz |
MAINT: Disable TravisCI git clone depth.
The default clone depth of TravisCI is 50, which is insufficient to make
the most recent annotated tag visible to versioneer now that master is
has grown to 579 commits past the tag. Disabling the clone depth as
suggested at https://docs.travis-ci.com/user/customizing-the-build/
appears to solve the problem.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 6b7585a56..1486bbb88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,10 @@ addons: # Speedup builds, particularly when USE_CHROOT=1 - eatmydata +# Disable clone depth +git: + depth: false + cache: directories: - $HOME/.cache/pip |