diff --git a/build_wheels.sh b/build_wheels.sh new file mode 100755 index 0000000..0a8d1a1 --- /dev/null +++ b/build_wheels.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -ex + +docker run --rm -v "$(pwd)":/io quay.io/pypa/manylinux_2_34_x86_64 \ + /bin/bash -c ' + set -e + for PYBIN in /opt/python/cp{311,312,313}*/bin; do + "${PYBIN}/pip" wheel /io -w /tmp/wheels + done + auditwheel repair /tmp/wheels/*.whl -w /io/wheelhouse +' diff --git a/setup.py b/setup.py index c06bf92..c7c4c5a 100644 --- a/setup.py +++ b/setup.py @@ -34,5 +34,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', ], )