From 21c7a338c40dae5cbdc5b0216102465eb7ae14d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Lipt=C3=A1k?= Date: Fri, 2 Feb 2024 13:25:46 -0500 Subject: [PATCH] Add Python 3.11 to GHA --- .github/workflows/wheel.yml | 12 ++++++------ setup.py | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index e60cbf8..23d13d0 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -10,15 +10,15 @@ jobs: sdist: runs-on: ubuntu-latest - name: Python 3.10 + name: Python 3.11 steps: - uses: actions/checkout@v2 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.11" architecture: x64 - name: Install test dependencies @@ -87,9 +87,9 @@ jobs: - uses: actions/checkout@v2 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.11" architecture: ${{ matrix.architecture }} - name: Set up QEMU @@ -108,7 +108,7 @@ jobs: python -m pip install delvewheel==0.0.9 - name: Build wheels - uses: joerick/cibuildwheel@v2.1.3 + uses: joerick/cibuildwheel@v2.11.2 - uses: actions/upload-artifact@v2 with: diff --git a/setup.py b/setup.py index 6b3c745..241a7a2 100644 --- a/setup.py +++ b/setup.py @@ -91,7 +91,8 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10' + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11' ], ext_modules=ext_modules, packages=packages,