Skip to content

Commit

Permalink
Added Python 3.12 win wheels and test in CI (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Aug 28, 2023
1 parent 3c1d1a8 commit d8085f8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
- version: cp310-win32
- version: cp311-win_amd64
- version: cp311-win32
- version: cp312-win_amd64
- version: cp312-win32

steps:
- uses: actions/download-artifact@v3
Expand All @@ -76,7 +78,7 @@ jobs:
rm pyspnego-*.tar.gz
- name: build wheel
uses: pypa/cibuildwheel@v2.11.1
uses: pypa/cibuildwheel@v2.15.0
env:
CIBW_ARCHS: all
CIBW_BUILD: ${{ matrix.version }}
Expand Down Expand Up @@ -108,6 +110,7 @@ jobs:
- 3.9
- '3.10'
- '3.11'
- '3.12.0-rc.1'
python-arch:
- x86
- x64
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.9.2 - TBD

* Added Python 3.12 wheel for Windows

## 0.9.1 - 2023-06-14

* Always set the `NTLMSSP_REQUEST_VERSION` flag on the NTLM `Negotiate` message
Expand Down
5 changes: 5 additions & 0 deletions build_helpers/run-ci.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/bash -ex

# Set by GHA setup-python
if [[ -n "${pythonLocation}" ]]; then
PATH="${pythonLocation}/bin:${PATH}"
fi

source ./build_helpers/lib.sh
lib::setup::system_requirements
lib::setup::python_requirements
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"cryptography",
Expand Down
2 changes: 1 addition & 1 deletion src/spnego/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright: (c) 2020, Jordan Borean (@jborean93) <jborean93@gmail.com>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)

__version__ = "0.9.1"
__version__ = "0.9.2"

0 comments on commit d8085f8

Please sign in to comment.