Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add newer Python versions in OSX to Github Actions #1035

Merged
merged 7 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/action-conda-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches:
- master
- ga_osx

jobs:

Expand Down Expand Up @@ -58,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest'] # may extent to osx in the future
os: ['ubuntu-latest', 'macos-latest']
python-version: ["3.6", "3.7", "3.8", "3.9"]
runs-on: ${{ matrix.os }}
needs: publish
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/action-install-from-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# in one single call; declaring the shell variable makes the action run each
# command separately (better for debugging);
# - can try multiple shells eg pwsh or cmd /C CALL {0} (but overkill for now!);
# FIXME OSX/Python3.8: 3.8.5 available on OSX only from July 20, 2020
# TODO: read the cron tasking documentation:
# https://www.netiq.com/documentation/cloud-manager-2-5/ncm-reference/data/bexyssf.html

Expand Down Expand Up @@ -73,7 +72,7 @@ jobs:
runs-on: "macos-latest"
strategy:
matrix:
python-version: [3.6, 3.7] # 3.8 not working as of 07-Sep-2020; 3.9 unchartered
python-version: [3.6, 3.7, 3.8, 3.9]
fail-fast: false
name: OSX Python ${{ matrix.python-version }}
steps:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/action-install-from-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# in one single call; declaring the shell variable makes the action run each
# command separately (better for debugging);
# - can try multiple shells eg pwsh or cmd /C CALL {0} (but overkill for now!);
# FIXME OSX/Python3.8: 3.8.5 available on OSX only from July 20, 2020
# TODO: read the cron tasking documentation:
# https://www.netiq.com/documentation/cloud-manager-2-5/ncm-reference/data/bexyssf.html

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/action-install-from-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: "macos-latest"
strategy:
matrix:
python-version: [3.6, 3.7, 3.8] # 3.9 don't work yet on 6 Jan 2021
python-version: [3.6, 3.7, 3.8, 3.9]
fail-fast: false
name: OSX Python ${{ matrix.python-version }}
steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/action-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# in one single call; declaring the shell variable makes the action run each
# command separately (better for debugging);
# - can try multiple shells eg pwsh or cmd /C CALL {0} (but overkill for now!);
# FIXME OSX/Python3.8: 3.8.5 available on OSX only from July 20, 2020
# TODO: read the cron tasking documentation:
# https://www.netiq.com/documentation/cloud-manager-2-5/ncm-reference/data/bexyssf.html

Expand Down Expand Up @@ -68,7 +67,7 @@ jobs:
runs-on: "macos-latest"
strategy:
matrix:
python-version: [3.6, 3.7, 3.8] # 3.9 is still dodgy on 6 Jan 2021
python-version: [3.6, 3.7, 3.8, 3.9]
fail-fast: false
name: OSX Python ${{ matrix.python-version }}
steps:
Expand Down