Skip to content

Commit

Permalink
ci(actions): remove windows os from build matrix for now
Browse files Browse the repository at this point in the history
I can't find an image that work with python 3.7 because it is officially out of support. When we
stop supporting python 3.7 we can start supporting windows tests in CI environments.
  • Loading branch information
AntoineDao committed May 12, 2024
1 parent 024214f commit d2aeafe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
name: Unit tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.7.9", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
python-version: ["3.7.17", "3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit d2aeafe

Please sign in to comment.