Skip to content

Commit

Permalink
added support for 3.9
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Staar <[email protected]>
  • Loading branch information
PeterStaar-IBM committed Nov 7, 2023
1 parent 53117a4 commit 26021fa
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:
include:

# Linux 64 bit manylinux2014

- os: ubuntu-latest
python: 39
platform: linux
platform_id: manylinux_x86_64

- os: ubuntu-latest
python: 310
platform: linux
Expand All @@ -46,6 +52,12 @@ jobs:
platform_id: manylinux_x86_64

# MacOS x86_64

- os: macos-latest
python: 39
platform: macos
platform_id: macosx_x86_64

- os: macos-latest
python: 310
platform: macos
Expand All @@ -72,6 +84,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Python 3.8
if: matrix.python == '38'
uses: actions/setup-python@v4
with:
python-version: '3.8' # update once build dependencies are available

- name: Setup Python 3.9
if: matrix.python == '39'
uses: actions/setup-python@v4
with:
python-version: '3.9' # update once build dependencies are available

- name: Setup Python 3.10
if: matrix.python == '310'
uses: actions/setup-python@v4
Expand All @@ -84,6 +108,12 @@ jobs:
with:
python-version: '3.11' # update once build dependencies are available

- name: Setup Python 3.12
if: matrix.python == '312'
uses: actions/setup-python@v4
with:
python-version: '3.12' # update once build dependencies are available

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -

Expand Down

0 comments on commit 26021fa

Please sign in to comment.