Skip to content

Commit

Permalink
end py3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha committed Nov 28, 2022
1 parent 2fe49d4 commit cd68962
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 30 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/test-darwin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build for macOS
name: Test for macOS

on:
- push
Expand Down Expand Up @@ -37,11 +37,6 @@ jobs:
with:
python-version: "3.7"

- uses: actions/setup-python@v4
name: Install Python 3.6
with:
python-version: "3.6"

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.6.3
Expand Down Expand Up @@ -76,12 +71,8 @@ jobs:
run: |
tox -e py37
- name: Test for Python 3.6
run: |
tox -e py36
- name: Build wheel
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-*
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-*
13 changes: 2 additions & 11 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build for Linux
name: Test for Linux

on:
- push
Expand Down Expand Up @@ -37,11 +37,6 @@ jobs:
with:
python-version: "3.7"

- uses: actions/setup-python@v4
name: Install Python 3.6
with:
python-version: "3.6"

- name: Checkout submodules
shell: bash
run: |
Expand Down Expand Up @@ -72,12 +67,8 @@ jobs:
run: |
tox -e py37
- name: Test for Python 3.6
run: |
tox -e py36`
- name: Build wheel
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-*
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-*
10 changes: 2 additions & 8 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build for windows
name: Test for Windows

on:
- push
Expand Down Expand Up @@ -98,15 +98,9 @@ jobs:
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -no_logo -arch=${{ matrix.config.vs-arch }}
tox -e py37
- name: Test for Python 3.6
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -no_logo -arch=${{ matrix.config.vs-arch }}
tox -e py36
- name: Build wheel
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-*
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-*

0 comments on commit cd68962

Please sign in to comment.