From 25fee1e5a00e52088369646395da968807e93c89 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 | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 49ac6eb..d0ab2fa 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -13,21 +13,15 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup Micromamba - uses: mamba-org/setup-micromamba@v2 - with: - environment-name: TEST - init-shell: bash - create-args: >- - python=3 numpy --file requirements-dev.txt --channel conda-forge + - name: Setup Pyhton + uses: actions/setup-python@v5 - 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