Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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='[email protected]',
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