Skip to content

Commit

Permalink
ci: Build for Python 3.9 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
leoetlino committed Dec 21, 2020
1 parent 67e1793 commit 1a29ea6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: [windows-latest]
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.8]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: [ubuntu-latest]
strategy:
matrix:
python-version: [3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: [macos-latest]
strategy:
matrix:
python-version: [3.8]
python-version: [3.9]
env:
MACOSX_DEPLOYMENT_TARGET: "10.14"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: [windows-latest]
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -47,11 +47,11 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9
- name: Build
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp36-cp36m cp38-cp38'
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38'
system-packages: 'epel-release cmake3'
package-path: ''
- name: Upload wheels
Expand All @@ -76,11 +76,11 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9
- name: Build
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp37-cp37m'
python-versions: 'cp39-cp39'
system-packages: 'epel-release cmake3'
package-path: ''
- name: Upload wheels
Expand All @@ -103,7 +103,7 @@ jobs:
runs-on: [macos-latest]
strategy:
matrix:
python-version: [3.8]
python-version: [3.8, 3.9]
env:
MACOSX_DEPLOYMENT_TARGET: "10.14"

Expand Down

0 comments on commit 1a29ea6

Please sign in to comment.