Skip to content

Commit

Permalink
Merge pull request #37 from rpanderson/py36-eol
Browse files Browse the repository at this point in the history
Remove Python 3.6 from builds, as it is end-of-life
  • Loading branch information
chrisjbillington committed Jun 2, 2022
2 parents fcbd695 + 6ce7e16 commit 846ab1d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,21 @@ jobs:
- { os: ubuntu-latest, python: '3.9', arch: x64 }
- { os: ubuntu-latest, python: '3.8', arch: x64 }
- { os: ubuntu-latest, python: '3.7', arch: x64 }
- { os: ubuntu-latest, python: '3.6', arch: x64 }

- { os: macos-latest, python: '3.10', arch: x64 }
- { os: macos-latest, python: '3.9', arch: x64 }
- { os: macos-latest, python: '3.8', arch: x64 }
- { os: macos-latest, python: '3.7', arch: x64 }
- { os: macos-latest, python: '3.6', arch: x64 }

- { os: windows-latest, python: '3.10', arch: x64 }
- { os: windows-latest, python: '3.9', arch: x64 }
- { os: windows-latest, python: '3.8', arch: x64 }
- { os: windows-latest, python: '3.7', arch: x64 }
- { os: windows-latest, python: '3.6', arch: x64 }

- { os: windows-latest, python: '3.10', arch: x86 }
- { os: windows-latest, python: '3.9', arch: x86 }
- { os: windows-latest, python: '3.8', arch: x86 }
- { os: windows-latest, python: '3.7', arch: x86 }
- { os: windows-latest, python: '3.6', arch: x86 }

if: github.repository == 'rpanderson/workflow-sandbox' && (github.event_name != 'create' || github.event.ref_type != 'branch')
steps:
Expand Down Expand Up @@ -149,11 +145,6 @@ jobs:
manylinux:
name: Build Manylinux
runs-on: ubuntu-latest
strategy:
matrix:
include:
- { python: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310' }

if: github.repository == 'rpanderson/workflow-sandbox' && (github.event_name != 'create' || github.event.ref_type != 'branch')
steps:
- name: Checkout
Expand All @@ -170,7 +161,7 @@ jobs:
if: env.PURE == 'false'
uses: RalfG/python-wheels-manylinux-build@v0.4.2
with:
python-versions: ${{ matrix.python }}
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'

- name: Upload Artifact
if: env.PURE == 'false'
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ license = BSD 3-Clause License
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand Down

0 comments on commit 846ab1d

Please sign in to comment.