Skip to content

Commit

Permalink
Remove support for macos-10.15
Browse files Browse the repository at this point in the history
The corresponding runner does not exist anymore on github and last
version is now macos-13.
  • Loading branch information
nhuet authored and g-poveda committed Jun 19, 2023
1 parent a7e5689 commit 65c19f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
python_version = ["3.7", "3.8", "3.9", "3.10"]
build = [ "macos-latest", "ubuntu-latest", "windows-latest" ]
test = [ "macos-10.15", "macos-11", "macos-12", "ubuntu-22.04", "ubuntu-20.04", "windows-2019", "windows-2022"]
test = [ "macos-11", "macos-12", "ubuntu-22.04", "ubuntu-20.04", "windows-2019", "windows-2022"]
build_doc = "true"
if "${{ github.event_name }}" != "schedule":
Expand All @@ -56,7 +56,6 @@ jobs:
if any(python_filter.values()):
python_version = [v for v in python_version if python_filter[v]]
os_filter = {
'macos-10.15' : to_bool("${{ contains(github.event.head_commit.message, '[ci: macos-10.15]') }}"),
'macos-11' : to_bool("${{ contains(github.event.head_commit.message, '[ci: macos-11]') }}"),
'macos-12' : to_bool("${{ contains(github.event.head_commit.message, '[ci: macos-12]') }}"),
'ubuntu-22.04' : to_bool("${{ contains(github.event.head_commit.message, '[ci: ubuntu-22.04]') }}"),
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
from os import environ
python_version = ["3.7", "3.8", "3.9", "3.10"]
build_dict = { "macos":["macos-10.15"], "ubuntu":["ubuntu-latest"], "windows":["windows-latest"] }
test_dict = { "macos":["macos-10.15", "macos-11"], "ubuntu":["ubuntu-22.04", "ubuntu-20.04"], "windows":["windows-2019", "windows-2022" ]}
build_dict = { "macos":["macos-11"], "ubuntu":["ubuntu-latest"], "windows":["windows-latest"] }
test_dict = { "macos":["macos-12", "macos-11"], "ubuntu":["ubuntu-22.04", "ubuntu-20.04"], "windows":["windows-2019", "windows-2022" ]}
deploy_test_pypi = "true"
if "${{ contains(github.event.head_commit.message, '[ci: skip-deploy-test-pypi]') }}" == "true":
Expand Down

0 comments on commit 65c19f5

Please sign in to comment.