Skip to content

Commit

Permalink
CI: use micromamba for pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Apr 13, 2024
1 parent ebeb6f1 commit acadab1
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,29 @@ jobs:
- uses: actions/checkout@v4

- name: Install Python
uses: actions/setup-python@v5
# - uses: conda-incubator/setup-miniconda@v2
# with:
# activate-environment: testenv
# allow-softlinks: true
# auto-activate-base: false
# auto-update-conda: true
# channel-priority: flexible
# channels: conda-forge
# miniconda-version: "latest"
# python-version: "${{ matrix.python-version }}"
# show-channel-urls: true
# use-only-tar-bz2: false

- uses: mamba-org/setup-micromamba@v1
with:
python-version: ${{ matrix.python-version }}
environment-name: test-env
create-args: >-
python=${{ matrix.python-version }}
# - name: Install Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}

# - name: Download wheels
# uses: actions/download-artifact@v4
Expand Down

0 comments on commit acadab1

Please sign in to comment.