diff --git a/.github/workflows/conda.yaml b/.github/workflows/conda.yaml index c9bd3169f..aed3f35ca 100644 --- a/.github/workflows/conda.yaml +++ b/.github/workflows/conda.yaml @@ -42,15 +42,14 @@ jobs: uses: conda-incubator/setup-miniconda@v2 with: auto-update-conda: true - activate-environment: test python-version: ${{ inputs.py_version }} + activate-environment: test + channels: bblanchon,pypdfium2-team + channel-priority: strict - name: Prepare run: | - conda install -y conda-build conda-verify anaconda-client - conda config --prepend channels bblanchon - conda config --prepend channels pypdfium2-team - conda config --set channel_priority strict + conda install -y conda-build conda-verify git config --global user.email "geisserml@gmail.com" git config --global user.name "geisserml" python3 -m pip install -U -r req/setup.txt @@ -88,15 +87,13 @@ jobs: uses: conda-incubator/setup-miniconda@v2 with: auto-update-conda: true - activate-environment: test python-version: ${{ matrix.py }} + activate-environment: test + channels: bblanchon,pypdfium2-team + channel-priority: strict - name: Prepare - run: | - conda config --prepend channels bblanchon - conda config --prepend channels pypdfium2-team - conda config --set channel_priority strict - python3 -m pip install -U -r req/default.txt + run: python3 -m pip install -U -r req/default.txt - name: Download packages uses: actions/download-artifact@v3