Skip to content

Commit

Permalink
Fix Python version in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
resmaili committed Mar 28, 2024
1 parent 5a59533 commit 3dbe91c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:

strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: ['3.11']
include:
- os: [macos-latest, windows-latest]

# Control the os/python builds
name: ${{ matrix.os }} Build and Release
Expand All @@ -33,7 +35,7 @@ jobs:
- name: Install Conda and Environment
uses: ./.github/actions/install-conda
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: Build binaries
uses: ./.github/actions/run-build
Expand Down

0 comments on commit 3dbe91c

Please sign in to comment.