Skip to content

Commit

Permalink
Merge pull request #19 from leoetlino/py3.10
Browse files Browse the repository at this point in the history
Build releases for Python 3.10
  • Loading branch information
leoetlino authored Nov 2, 2021
2 parents 4313c62 + 05416be commit 0158389
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: [windows-latest]
strategy:
matrix:
python-version: [3.8]
python-version: ['3.8']

steps:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -46,13 +46,13 @@ jobs:
runs-on: [ubuntu-latest]
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -70,15 +70,15 @@ jobs:
runs-on: [macos-latest]
strategy:
matrix:
python-version: [3.9]
python-version: ['3.9']
env:
MACOSX_DEPLOYMENT_TARGET: "10.14"

steps:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
runs-on: [windows-latest]
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down Expand Up @@ -45,13 +45,13 @@ jobs:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Build
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38'
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39'
system-packages: 'epel-release cmake3'
package-path: ''
- name: Upload wheels
Expand All @@ -74,13 +74,13 @@ jobs:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'
- name: Build
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp39-cp39'
python-versions: 'cp310-cp310'
system-packages: 'epel-release cmake3'
package-path: ''
- name: Upload wheels
Expand All @@ -103,15 +103,15 @@ jobs:
runs-on: [macos-latest]
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ['3.8', '3.9', '3.10']
env:
MACOSX_DEPLOYMENT_TARGET: "10.14"

steps:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 0158389

Please sign in to comment.