We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b57a161 commit 4bd3cccCopy full SHA for 4bd3ccc
.github/workflows/release.yml
@@ -26,10 +26,15 @@ jobs:
26
steps:
27
- uses: actions/checkout@v4
28
29
- - uses: actions/setup-python@v5
30
- name: Install Python
+ - name: Setup environment
+ uses: conda-incubator/setup-miniconda@v3
31
with:
32
- python-version: '3.11'
+ miniforge-variant: Miniforge3
33
+ miniforge-version: latest
34
+ python-version: ${{ matrix.python-version }}
35
+ use-mamba: true
36
+ auto-update-conda: true
37
+ environment-file: .github/environment.yml
38
39
- name: Build sdist
40
run: pipx run build --sdist
0 commit comments