Skip to content

Commit

Permalink
Rolled back python and miniconda version
Browse files Browse the repository at this point in the history
Running into errors with installing arcgis module, so rolling back versions to see if more stable
  • Loading branch information
MichaelDykesBC authored Dec 18, 2024
1 parent 3c7b075 commit d24a62a
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/Avalanche-Canada-Forecasts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v2

- uses: actions/setup-python@v5
- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.9'

- name: Set up Conda environment
uses: conda-incubator/setup-miniconda@v3
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: bier_env
python-version: 3.11
python-version: 3.9

- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
shell: bash
command: |
conda env update --file Avalanche-Canada-Forecasts/requirements.yaml --name bier_env
conda list -n bier_env
shell: bash
run: |
conda env update --file Avalanche-Canada-Forecasts/requirements.yaml --name bier_env
conda env list
conda init bash
. ~/.bashrc
conda activate bier_env
- name: Run script
shell: bash
env:
Expand Down

0 comments on commit d24a62a

Please sign in to comment.