-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for Python 3.8 (due to numpy 2.0)
Signed-off-by: Lucas Heitzmann Gabrielli <[email protected]>
- Loading branch information
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
- uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: "*-manylinux_x86_64 *-manylinux_i686 *-manylinux_aarch64" | ||
CIBW_SKIP: "cp36-* cp37-* pp*" | ||
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*" | ||
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014" | ||
CIBW_MANYLINUX_I686_IMAGE: "manylinux2014" | ||
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux2014" | ||
|
@@ -38,7 +38,7 @@ jobs: | |
- uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: "*-manylinux_x86_64 *-manylinux_aarch64" | ||
CIBW_SKIP: "cp36-* cp37-* pp*" | ||
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*" | ||
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28" | ||
CIBW_MANYLINUX_I686_IMAGE: "manylinux_2_28" | ||
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28" | ||
|
@@ -63,7 +63,7 @@ jobs: | |
- uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: "*-musllinux_x86_64 *-musllinux_i686 *-musllinux_aarch64" | ||
CIBW_SKIP: "cp36-* cp37-* pp*" | ||
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*" | ||
CIBW_BEFORE_ALL_LINUX: > | ||
apk update && | ||
apk add wget && | ||
|
@@ -83,7 +83,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: pypa/[email protected] | ||
env: | ||
CIBW_SKIP: "cp36-* cp37-* pp*" | ||
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*" | ||
CIBW_ARCHS_MACOS: "x86_64 universal2" | ||
CIBW_BEFORE_ALL_MACOS: > | ||
wget https://github.com/qhull/qhull/archive/refs/tags/v8.0.2.tar.gz && | ||
|
@@ -99,7 +99,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
name: Build wheels for Windows (${{ matrix.python-version }}) | ||
runs-on: windows-latest | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters