Skip to content

Commit

Permalink
Only build wheels for Python 3.9 and up
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Nov 26, 2024
1 parent 43c144d commit 8382645
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
# Use boost 1_72, since this allows c++11. We need c++11, since manylinux2014 only has gcc 4.8
# Can't use boost 1.53 (default on linux) because it doesn't have rtree functionality
# CIBW_BUILD: cp36-manylinux_x86_64 cp36-win_amd64 cp36-macosx_x86_64
CIBW_BUILD: cp313-manylinux_x86_64 # cp310-manylinux_x86_64
# CIBW_BUILD: cp313-manylinux_x86_64 # cp310-manylinux_x86_64
# CIBW_BUILD: cp310-macosx_x86_64
# PyPy compilation on MACOS doesn't work, possibly since there is no available numpy release for this
# Armadillo isn't available for i687 on Centos 7, making compilation more complicated
# # Musllinux doesn't use yum as its package manager
CIBW_SKIP: pp*-macosx* *i686* *musllinux*
CIBW_SKIP: pp*-macosx* *i686* *musllinux* cp36* cp37* cp38*
CIBW_BEFORE_ALL_LINUX: |
yum install -y lapack-devel armadillo-devel
curl -L -O https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz
Expand Down

0 comments on commit 8382645

Please sign in to comment.