Skip to content

Commit

Permalink
Add Python 3.11 to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
gliptak committed Feb 2, 2024
1 parent fa62ec8 commit 21c7a33
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 21c7a33

Please sign in to comment.