Skip to content

Commit

Permalink
adding build for Python 3.12, updating automated test Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebe-p committed Nov 3, 2023
1 parent 31d9110 commit 70a709a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build_deploy_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- develop
- update_build_312
tags:
- "**"

Expand All @@ -28,7 +29,8 @@ jobs:
- [ macos-11, macosx, arm64] # cross compiled
- [ windows-2019, win, AMD64 ]

python: [[ "cp37", "3.7" ], [ "cp38", "3.8" ], [ "cp39", "3.9" ], [ "cp310", "3.10" ], [ "cp311", "3.11" ]]
python: [[ "cp37", "3.7" ], [ "cp38", "3.8" ], [ "cp39", "3.9" ],
[ "cp310", "3.10" ], [ "cp311", "3.11" ], ["cp312", "3.12"]]

name: Build wheel for ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }} ${{ matrix.buildplat[2] }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_unit_and_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand Down

0 comments on commit 70a709a

Please sign in to comment.