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

Bump bundled Python to v3.11 #189

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Changes from all 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
14 changes: 9 additions & 5 deletions .github/workflows/make_bundle_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,33 +193,37 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.11"
- name: Prepare matrix
id: set-matrix
shell: python
# The Python versions chosen below will determine which
# Python versions the installers will bundle. The general
# principle is to follow the SPEC-0 recommendation:
# https://scientific-python.org/specs/spec-0000/
run: |
import os
import json

elements = [
{
"os": "ubuntu-latest",
"python-version": "3.9",
"python-version": "3.11",
"target-platform": "linux-64",
},
{
"os": "macos-13",
"python-version": "3.9",
"python-version": "3.11",
"target-platform": "osx-64",
},
{
"os": "macos-14",
"python-version": "3.9",
"python-version": "3.11",
"target-platform": "osx-arm64",
},
{
"os": "windows-latest",
"python-version": "3.9",
"python-version": "3.11",
"target-platform": "win-64",
},
]
Expand Down