Skip to content

Commit

Permalink
Update test workflow to work using Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
has-abi committed Feb 10, 2024
1 parent 718c786 commit 540a2d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.9
python-version: "3.10"

- name: Install Python dependencies
run: |
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 540a2d4

Please sign in to comment.