From f336c38ed5839a156204382e90a5dfc962618189 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Thu, 7 Nov 2024 08:50:36 +0100 Subject: [PATCH] ditch micromamba --- .github/workflows/deploy-docs.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 49ac6eb..e5be8a1 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -7,27 +7,27 @@ on: tags: - "v*" +defaults: + run: + shell: bash + jobs: run: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v2 + - name: Set up Python + uses: actions/setup-python@v5 with: - environment-name: TEST - init-shell: bash - create-args: >- - python=3 numpy --file requirements-dev.txt --channel conda-forge + python-version: "3.x" - name: Install gsw - shell: bash -l {0} - run: | - python -m pip install -e . --no-deps --force-reinstall + run: > + python -m pip install -r requirements-dev.txt + && python -m pip install -e . - name: Build documentation - shell: bash -l {0} run: > set -e && pushd docs