Skip to content

Commit

Permalink
Disable Windows and Python 3.9 in build due to failures
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamtt committed Nov 6, 2023
1 parent dff9268 commit 7527ad2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,18 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: [
# "3.9", # Disabling 3.9 to get the build working
"3.10",
"3.11",
"3.12",
]
poetry-version: ["1.6.1"]
os: [ubuntu-latest, macos-latest, windows-latest]
os: [
ubuntu-latest,
macos-latest,
# windows-latest, # Disabling Windows to get build working
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 7527ad2

Please sign in to comment.