Skip to content

Commit

Permalink
Disable 'update-conda' to make workflow successful
Browse files Browse the repository at this point in the history
  • Loading branch information
jnettels committed Oct 15, 2024
1 parent e89ee23 commit 61e957f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup conda with python ${{ matrix.python-version }}
uses: s-weigand/setup-conda@v1
with:
update-conda: true
update-conda: false
python-version: ${{ matrix.python-version }}

- name: Initialize powershell for conda (Windows only)
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/python_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ jobs:
runs-on: ${{ matrix.os }}
name: Build
strategy:
fail-fast: false # complete remaining jobs
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: Checkout
Expand All @@ -18,7 +19,7 @@ jobs:
- name: Setup conda with python ${{ matrix.python-version }}
uses: s-weigand/setup-conda@v1
with:
update-conda: true
update-conda: false
python-version: ${{ matrix.python-version }}

- name: Initialize powershell for conda (Windows only)
Expand Down

0 comments on commit 61e957f

Please sign in to comment.