From f3069068986a4684e73efe1ba273910025f6079b Mon Sep 17 00:00:00 2001 From: Timothy Pansino <11214426+TimPansino@users.noreply.github.com> Date: Tue, 12 Oct 2021 15:04:16 -0700 Subject: [PATCH] Update actions to allow 3.10 wheels to build. (#406) --- .github/workflows/deploy-python.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-python.yml b/.github/workflows/deploy-python.yml index 159876cc18..4a0054c1a5 100644 --- a/.github/workflows/deploy-python.yml +++ b/.github/workflows/deploy-python.yml @@ -54,7 +54,7 @@ jobs: CIBW_ENVIRONMENT: "LD_LIBRARY_PATH=/opt/rh/=vtoolset-8/root/usr/lib64:/opt/rh/devtoolset-8/root/usr/lib:/opt/rh/devtoolset-8/root/usr/lib64/dyninst:/opt/rh/devtoolset-8/root/usr/lib/dyninst:/usr/local/lib64:/usr/local/lib" - name: Build Manylinux Wheels (Python 3) - uses: pypa/cibuildwheel@v2.0.1 + uses: pypa/cibuildwheel@v2.1.3 env: CIBW_PLATFORM: linux CIBW_BUILD: cp36-manylinux_aarch64 cp37-manylinux_aarch64 cp38-manylinux_aarch64 cp39-manylinux_aarch64 cp310-manylinux_aarch64 cp36-manylinux_x86_64 cp37-manylinux_x86_64 cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64 diff --git a/setup.py b/setup.py index f7ce753c45..667536f5ac 100644 --- a/setup.py +++ b/setup.py @@ -119,6 +119,7 @@ def build_extension(self, ext): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: System :: Monitoring",