Skip to content

Commit

Permalink
Fix python version
Browse files Browse the repository at this point in the history
  • Loading branch information
altheaden committed Dec 19, 2024
1 parent 9138173 commit 8263ea4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/docs_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
release:
types: [published]

env:
PYTHON_VERSION: "3.10"

jobs:
publish-docs:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -41,14 +44,14 @@ jobs:
channels: conda-forge
channel-priority: strict
auto-update-conda: true
python-version: ${{ matrix.python-version }}
python-version: ${{ env.PYTHON_VERSION }}

- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
name: Install mpas_analysis
run: |
git config --global url."https://github.com/".insteadOf "[email protected]:"
conda create -n mpas_analysis_dev --file dev-spec.txt \
python=${{ matrix.python-version }}
python=${{ env.PYTHON_VERSION }}
conda activate mpas_analysis_dev
python -m pip install -vv --no-deps --no-build-isolation -e .
Expand Down

0 comments on commit 8263ea4

Please sign in to comment.