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

Publish macos with Python 3.8 on macos-12, not latest #595

Merged
merged 2 commits into from Apr 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/publish.yml
Expand Up @@ -291,7 +291,7 @@ jobs:
matrix:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
include:
- os: macos-latest
- os: macos-13
os-label: macOS
python: "3.8"
- os: macos-latest
Expand All @@ -303,12 +303,12 @@ jobs:
- os: macos-11
os-label: macOS 11
python: "installed"
- os: macos-12
os-label: macOS 12
python: "installed"
- os: macos-13
os-label: macOS 13
python: "installed"
- os: macos-14
os-label: macOS 14
python: "installed"

steps:
- name: Checkout
Expand All @@ -320,6 +320,12 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Setup Python
if: matrix.python == 'venv'
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install virtualenv
if: matrix.python == 'venv'
run: python3 -m pip install virtualenv
Expand Down