Skip to content

Commit

Permalink
have ci build cp37 wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Jul 5, 2024
1 parent 3b88fd1 commit 8e5b097
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

env:
CIBW_SKIP: "cp36-* cp37-* pp* *-win_arm64 *-musllinux_aarch64"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* pp37-* pp38-* pp39-* pp310-*"
CIBW_SKIP: "cp36-* pp* *-win_arm64 *-musllinux_aarch64"
CIBW_ARCHS_LINUX: "x86_64 i686 aarch64"

steps:
Expand Down Expand Up @@ -49,7 +50,7 @@ jobs:
uses: pypa/cibuildwheel@v2.19.1
env:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_SKIP: "cp36-* cp37-*"
CIBW_SKIP: "cp36-* pp*"
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_REPAIR_WHEEL_COMMAND: |
echo "Target delocate archs: {delocate_archs}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
os: [ubuntu-latest, macos-13, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ This is as simple as it can be::
At the moment wheels (which require no build) are provided for the following platforms,
on other platforms the source package is used and a compiler is required:

+ Linux: Python 3.8 - 3.12 / x86_64, arm64
+ MacOS: Python 3.8 - 3.12 / x86_64, arm64
+ Windows: Python 3.8 - 3.12 / 32- & 64-bit
+ Linux: Python 3.7 - 3.12 / x86_64, arm64
+ MacOS: Python 3.7 - 3.12 / x86_64, arm64
+ Windows: Python 3.7 - 3.12 / 32- & 64-bit

CLI
===
Expand Down

0 comments on commit 8e5b097

Please sign in to comment.