diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 57e7b709..c8270d0a 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -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 diff --git a/swig/python-packaging/setup.in.py b/swig/python-packaging/setup.in.py index 8ab327ed..8046e91e 100644 --- a/swig/python-packaging/setup.in.py +++ b/swig/python-packaging/setup.in.py @@ -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? diff --git a/swig/python/setup.in.py b/swig/python/setup.in.py index 918e5d8c..5f888b08 100644 --- a/swig/python/setup.in.py +++ b/swig/python/setup.in.py @@ -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?