From 5303c7a4f9ff7309406e6d2492b15db88ec8476d Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sun, 7 Feb 2021 20:55:56 -0700 Subject: 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. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.travis.yml') 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 -- cgit v1.2.1