Skip to content

Commit e4d4d08

Browse files
committed
Add Python 3.11 wheels
Signed-off-by: Jordan Borean <jborean93@gmail.com>
1 parent aae717d commit e4d4d08

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/ci.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
fail-fast: false
4444
matrix:
4545
include:
46+
- os: macOS-12
47+
version: cp311-macosx_x86_64
48+
- os: macOS-12
49+
version: cp311-macosx_arm64
4650
- os: macOS-12
4751
version: cp310-macosx_x86_64
4852
- os: macOS-12
@@ -58,6 +62,10 @@ jobs:
5862
- os: macOS-12
5963
version: cp37-macosx_x86_64
6064

65+
- os: windows-2022
66+
version: cp311-win_amd64
67+
- os: windows-2022
68+
version: cp311-win32
6169
- os: windows-2022
6270
version: cp310-win_amd64
6371
- os: windows-2022
@@ -105,7 +113,7 @@ jobs:
105113
rm gssapi-*.tar.gz
106114
107115
- name: Build wheel
108-
uses: pypa/cibuildwheel@v2.8.1
116+
uses: pypa/cibuildwheel@v2.11.1
109117
env:
110118
CIBW_ARCHS: all
111119
CIBW_TEST_SKIP: '*_arm64'
@@ -171,6 +179,7 @@ jobs:
171179
fail-fast: false
172180
matrix:
173181
name:
182+
- win-py-3.11
174183
- win-py-3.10
175184
- win-py-3.9
176185
- win-py-3.8
@@ -179,6 +188,8 @@ jobs:
179188
- x64
180189
- x86
181190
include:
191+
- name: win-py-3.11
192+
pyenv: '3.11'
182193
- name: win-py-3.10
183194
pyenv: '3.10'
184195
- name: win-py-3.9

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def gssapi_modules(lst):
274274

275275
setup(
276276
name='gssapi',
277-
version='1.8.1',
277+
version='1.8.2',
278278
author='The Python GSSAPI Team',
279279
author_email='jborean93@gmail.com',
280280
packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions',
@@ -296,6 +296,7 @@ def gssapi_modules(lst):
296296
'Programming Language :: Python :: 3.8',
297297
'Programming Language :: Python :: 3.9',
298298
'Programming Language :: Python :: 3.10',
299+
'Programming Language :: Python :: 3.11',
299300
'Intended Audience :: Developers',
300301
'License :: OSI Approved :: ISC License (ISCL)',
301302
'Programming Language :: Python :: Implementation :: CPython',

0 commit comments

Comments
 (0)