Skip to content

Commit

Permalink
Bump bundled Python to v3.11 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp authored Oct 17, 2024
1 parent f98ea8d commit 58bbe3f
Showing 1 changed file with 9 additions and 5 deletions.
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

0 comments on commit 58bbe3f

Please sign in to comment.