Skip to content

Commit

Permalink
Merge pull request #37 from area1/python-3.10
Browse files Browse the repository at this point in the history
[Github Actions] Python 3.10 support
  • Loading branch information
buffer authored Jan 21, 2022
2 parents a0a159b + 7903c18 commit 4b6bf0d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build-linux-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
exclude:
- os: ubuntu-20.04
python-version: '3.6'
- os: ubuntu-20.04
python-version: '3.7'
- os: ubuntu-20.04
python-version: '3.9'
- os: ubuntu-20.04
python-version: '3.10'

steps:
- name: STEP 1. Checkout repository
Expand Down Expand Up @@ -46,6 +48,7 @@ jobs:
- name: STEP 5. Test wheel
run: |
pytest -v
if: ${{ matrix.python-version != '3.10' }}

- name: STEP 6. Create wheel zip
uses: vimtor/action-zip@v1
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
exclude:
- os: ubuntu-20.04
python-version: '3.6'
- os: ubuntu-20.04
python-version: '3.7'
- os: ubuntu-20.04
python-version: '3.9'
- os: ubuntu-20.04
python-version: '3.10'

steps:
- name: STEP 1. Checkout repository
Expand Down Expand Up @@ -45,6 +47,7 @@ jobs:
- name: STEP 5. Test wheel
run: |
pytest -v
if: ${{ matrix.python-version != '3.10' }}

- name: STEP 6. Create wheel zip
uses: vimtor/action-zip@v1
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-linux-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
python-version: '3.7'
- os: ubuntu-20.04
python-version: '3.9'
- os: ubuntu-20.04
python-version: '3.10'

steps:
- name: STEP 1. Checkout repository
Expand Down Expand Up @@ -50,6 +52,7 @@ jobs:
- name: STEP 5. Test wheel
run: |
pytest -v
if: ${{ matrix.python-version != '3.10' }}

- name: STEP 6. Create wheel zip
uses: vimtor/action-zip@v1
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
exclude:
- os: ubuntu-20.04
python-version: '3.6'
- os: ubuntu-20.04
python-version: '3.7'
- os: ubuntu-20.04
python-version: '3.9'
- os: ubuntu-20.04
python-version: '3.10'

steps:
- name: STEP 1. Checkout repository
Expand Down Expand Up @@ -49,6 +51,7 @@ jobs:
- name: STEP 5. Test wheel
run: |
pytest -v
if: ${{ matrix.python-version != '3.10' }}

- name: STEP 6. Create wheel zip
uses: vimtor/action-zip@v1
Expand Down

0 comments on commit 4b6bf0d

Please sign in to comment.