diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 730ac21f..9f98fed7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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' @@ -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 @@ -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 diff --git a/setup.py b/setup.py index 1c70f4a6..36c7aafa 100755 --- a/setup.py +++ b/setup.py @@ -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', @@ -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',