Skip to content

Commit

Permalink
Add Python 3.11 wheels
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Borean <jborean93@gmail.com>
  • Loading branch information
jborean93 committed Oct 25, 2022
1 parent aae717d commit e4d4d08
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
fail-fast: false
matrix:
include:
- os: macOS-12
version: cp311-macosx_x86_64
- os: macOS-12
version: cp311-macosx_arm64
- os: macOS-12
version: cp310-macosx_x86_64
- os: macOS-12
Expand All @@ -58,6 +62,10 @@ jobs:
- os: macOS-12
version: cp37-macosx_x86_64

- os: windows-2022
version: cp311-win_amd64
- os: windows-2022
version: cp311-win32
- os: windows-2022
version: cp310-win_amd64
- os: windows-2022
Expand Down Expand Up @@ -105,7 +113,7 @@ jobs:
rm gssapi-*.tar.gz
- name: Build wheel
uses: pypa/cibuildwheel@v2.8.1
uses: pypa/cibuildwheel@v2.11.1
env:
CIBW_ARCHS: all
CIBW_TEST_SKIP: '*_arm64'
Expand Down Expand Up @@ -171,6 +179,7 @@ jobs:
fail-fast: false
matrix:
name:
- win-py-3.11
- win-py-3.10
- win-py-3.9
- win-py-3.8
Expand All @@ -179,6 +188,8 @@ jobs:
- x64
- x86
include:
- name: win-py-3.11
pyenv: '3.11'
- name: win-py-3.10
pyenv: '3.10'
- name: win-py-3.9
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def gssapi_modules(lst):

setup(
name='gssapi',
version='1.8.1',
version='1.8.2',
author='The Python GSSAPI Team',
author_email='jborean93@gmail.com',
packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions',
Expand All @@ -296,6 +296,7 @@ def gssapi_modules(lst):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down

0 comments on commit e4d4d08

Please sign in to comment.