Skip to content

Commit

Permalink
Merge pull request #21 from arnab39/change/os_ci_test
Browse files Browse the repository at this point in the history
[Change] OS used to test python 3.7
  • Loading branch information
sibasmarak authored May 28, 2024
2 parents 8bf1da3 + 102f73f commit b081106
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,16 @@ jobs:
test:
needs: prepare
strategy:
fail-fast: false
matrix:
python:
- "3.7" # oldest Python supported by PSF
- "3.12" # newest Python that is stable
platform:
- ubuntu-latest
- macos-latest
- windows-latest
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
platform: [ubuntu-latest, macos-latest, windows-latest]
exclude: # Python < v3.8 does not support Apple Silicon ARM64.
- python: "3.7"
platform: macos-latest
include: # So run those legacy versions on Intel CPUs.
- python: "3.7"
platform: macos-13
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Updated `CONTRIBUTING.md` with more information on how to run the code checks.
- Changed the OS used to test Python 3.7 on GitHub actions (macos-latest -> macos-13).

### Removed

Expand Down

0 comments on commit b081106

Please sign in to comment.