We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e648c4 commit 172a86cCopy full SHA for 172a86c
.github/workflows/test.yml
@@ -17,7 +17,9 @@ jobs:
17
steps:
18
- uses: actions/checkout@v4
19
with:
20
- fetch-depth: 0
+ # Retrieve some git history, which will hopefully include the last release tag
21
+ # and enable us to generate better version numbers.
22
+ fetch-depth: 256
23
24
- name: Install uv
25
uses: astral-sh/setup-uv@v6
.readthedocs.yaml
@@ -7,6 +7,11 @@ build:
7
os: ubuntu-22.04
8
tools:
9
python: "3.11"
10
+ jobs:
11
+ post_checkout:
12
13
14
+ - git fetch --depth=256
15
apt_packages:
16
- build-essential
- pkg-config
0 commit comments