We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee895f commit 7de3145Copy full SHA for 7de3145
1 file changed
.github/workflows/build-mkl.yaml
@@ -16,13 +16,17 @@ jobs:
16
python-version: ["3.11", "3.12", "3.13"]
17
18
runs-on: ${{ matrix.platform }}
19
+ env:
20
+ PIP_NO_USER: "1"
21
defaults:
22
run:
23
shell: bash -l {0}
24
steps:
25
- uses: actions/checkout@v6
- with:
- fetch-depth: 0
26
+ - name: Get history and tags for SCM versioning to work
27
+ run: |
28
+ git fetch --prune --unshallow
29
+ git fetch --depth=1 origin +refs/tags/*:refs/tags/*
30
- uses: conda-incubator/setup-miniconda@v4
31
with:
32
use-mamba: true
0 commit comments