Skip to content

Commit

Permalink
Don't build pp38 wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Nov 27, 2024
1 parent 0a5c104 commit c0ae181
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# 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* cp36* cp37* cp38*
CIBW_SKIP: pp*-macosx* *i686* *musllinux* *p36* *p37* *p38*
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
9 changes: 3 additions & 6 deletions swig/python-packaging/setup.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,11 @@ def run(self):

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],

# What does your project relate to?
Expand Down
10 changes: 5 additions & 5 deletions swig/python/setup.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ def finalize_options(self):

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],

# What does your project relate to?
Expand Down

0 comments on commit c0ae181

Please sign in to comment.