From a39a31cc7c0799f6d8c83f82a12a9a09a6670e0d Mon Sep 17 00:00:00 2001 From: Ian Hunt-Isaak Date: Wed, 15 Feb 2023 14:20:41 -0500 Subject: [PATCH] attempt to fix micromamba in release workflow --- .github/workflows/release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bd60de0f..e192e968 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,11 +14,19 @@ jobs: uses: mamba-org/provision-with-micromamba@main with: channels: conda-forge + environment-file: false + environment-name: ipympl-release + extra-specs: | + python=3.9 + jupyterlab + yarn + matplotlib + ipywidgets + jupyter-packaging=0.7 - name: Install dependencies run: | - mamba install -c conda-forge python=3.9 jupyterlab yarn matplotlib ipywidgets jupyter-packaging=0.7 - pip install twine wheel build + python -m pip install twine wheel build - name: Publish the Python package env: