Skip to content

Commit

Permalink
Simplify python versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed Jul 21, 2024
1 parent 88e945b commit 0134fec
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,17 @@ jobs:

tests:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3

- name: Setup Bonsai
working-directory: bonsai
run: .\Setup.ps1

- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: '3.11'

- name: Install dependencies
run: |
Expand Down

0 comments on commit 0134fec

Please sign in to comment.