Update required Python versions and add more architectures.

This commit is contained in:
Josh W 2024-09-03 22:06:34 -04:00
parent 985ef13cf9
commit 7ec8e0300e
2 changed files with 11 additions and 4 deletions

View file

@ -50,6 +50,11 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
- name: Set up QEMU on Linux images
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Get Python Version Name - name: Get Python Version Name
uses: mad9000/actions-find-and-replace-string@5 uses: mad9000/actions-find-and-replace-string@5
id: pythonversion id: pythonversion
@ -67,7 +72,8 @@ jobs:
- name: Build wheels - name: Build wheels
uses: joerick/cibuildwheel@v2.20.0 uses: joerick/cibuildwheel@v2.20.0
env: env:
#CIBW_ARCHS: "${{ matrix.archs }}" CIBW_ARCHS_LINUX: "auto aarch64 ppc64le s390x"
CIBW_ARCHS_WINDOWS: "auto ARM64"
CIBW_BUILD: "cp${{ steps.pythonversion.outputs.value }}-*" CIBW_BUILD: "cp${{ steps.pythonversion.outputs.value }}-*"
CIBW_ENVIRONMENT: "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.event.inputs.overrideVersion }}" CIBW_ENVIRONMENT: "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.event.inputs.overrideVersion }}"
- name: Upload wheels to artifact container - name: Upload wheels to artifact container

View file

@ -34,10 +34,11 @@ classifiers =
Operating System :: Microsoft :: Windows Operating System :: Microsoft :: Windows
Programming Language :: Cython Programming Language :: Cython
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules Topic :: Software Development :: Libraries :: Python Modules
Topic :: Multimedia :: Sound/Audio Topic :: Multimedia :: Sound/Audio
Topic :: Multimedia :: Sound/Audio :: Analysis Topic :: Multimedia :: Sound/Audio :: Analysis
@ -45,7 +46,7 @@ classifiers =
[options] [options]
zip_safe = True zip_safe = True
include_package_data = True include_package_data = True
python_requires = >= 3.6 python_requires = >= 3.8
install_requires = install_requires =
packages = find: packages = find:
package_dir = package_dir =