Skip to content

Commit

Permalink
Merge branch 'main' into zizmor
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler authored Dec 10, 2024
2 parents f0794f7 + edd0c0f commit a5c3978
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,9 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ env.PYTHON }}
miniforge-variant: Mambaforge
use-mamba: true
channels: conda-forge,defaults
# Allow mamba to use other than tar.bz2
miniforge-version: latest
channels: conda-forge
# Allow conda to use other than tar.bz2
# (otherwise it cannot find latest versions that
# don't use tar-bz2 files, see
# https://github.com/conda-incubator/setup-miniconda/issues/267)
Expand All @@ -70,7 +69,7 @@ jobs:
- name: Collect requirements
run: |
echo "Install Dependente to capture dependencies:"
mamba install dependente==0.3.0 -c conda-forge
conda install dependente==0.3.0 -c conda-forge
echo ""
echo "Capturing run-time dependencies:"
dependente --source install > requirements-full.txt
Expand Down Expand Up @@ -99,10 +98,10 @@ jobs:
key: conda-${{ runner.os }}-${{ env.PYTHON }}-${{ hashFiles('requirements-full.txt') }}

- name: Install requirements
run: mamba install --quiet --file requirements-full.txt python=$PYTHON
run: conda install --quiet --file requirements-full.txt python=$PYTHON

- name: List installed packages
run: mamba list
run: conda list

- name: Build source and wheel distributions
run: |
Expand Down

0 comments on commit a5c3978

Please sign in to comment.