Skip to content

Commit

Permalink
chore(rtd): Avoid failure on shallow history
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed May 11, 2024
1 parent df5d745 commit cbcf59c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ build:
python: "3.10"
jobs:
post_checkout:
- git fetch --unshallow
# Fetch full history, but don't fail if we already have it
- git fetch --unshallow || true

sphinx:
configuration: docs/conf.py
Expand All @@ -16,4 +17,4 @@ python:
- method: pip
path: .
extra_requirements:
- doc
- doc

0 comments on commit cbcf59c

Please sign in to comment.