-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,14 @@ jobs: | |
fail-fast: false | ||
max-parallel: 10 | ||
matrix: | ||
python-version: ['3.12', '3.11', '3.10', '3.9', '3.8'] | ||
python-version: ['3.12', '3.11', '3.10', '3.9'] | ||
os: [ubuntu-latest, macos-latest] | ||
exclude: | ||
# mac os: exclude all but the last two (available) python releases | ||
- os: macos-latest | ||
python-version: 3.8 | ||
python-version: 3.10 | ||
- os: macos-latest | ||
python-version: 3.7 | ||
# mac os: exclude python 3.11 since it's not yet available for runners | ||
- os: macos-latest | ||
python-version: 3.11 | ||
python-version: 3.9 | ||
|
||
steps: | ||
- name: checkout | ||
|
@@ -42,9 +39,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: set up virtual env | ||
run: python3 -m venv venv | ||
|
||
- name: upgrade pip | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: python3 -m pip install --upgrade pip | ||
|
||
- name: pip install development dependencies | ||
|