Skip to content

Commit

Permalink
build: Add support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chyroc committed Sep 26, 2024
1 parent 62f5e83 commit 9385584
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest"]
os-label: ["Ubuntu"]
python-version: [ "3.7","3.8", "3.9", "3.10", "3.11", "3.12" ]
os: [ "ubuntu-latest" ]
os-label: [ "Ubuntu" ]
include:
- {python-version: "3.8", os: "windows-latest", os-label: "Windows"}
- {python-version: "3.8", os: "macos-latest", os-label: "macOS"}
- { python-version: "3.8", os: "windows-latest", os-label: "Windows" }
- { python-version: "3.8", os: "macos-latest", os-label: "macOS" }
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
name: "Test success"
if: always()
runs-on: ubuntu-latest
needs: [test]
needs: [ test ]
steps:
- name: "Success"
if: needs.test.result == 'success'
Expand Down

0 comments on commit 9385584

Please sign in to comment.