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
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: build sdist and wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: build sdist and wheel
run: |
Expand Down Expand Up @@ -45,15 +45,17 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: artifact
path: ./dist
Expand Down Expand Up @@ -86,7 +88,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: artifact
path: ./dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v4.0.0
- uses: actions/stale@v10.1.0
id: stale
with:
days-before-stale: 28
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
History
=======

1.4.0: 2025-10-16
-----------
- Added ``channel_bindings`` support to ``HTTPSPNEGOAuth`` to control whether channel bindings are used.

1.3.0: 2024-02-16
-----------
- Drop flag for out of sequence detection
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ Channel Bindings
----------------

Optional simplified support for channel bindings is available, but limited to
the 'tls-server-end-point' bindings type (manual construction of different
the ``tls-server-end-point`` bindings type (manual construction of different
channel bindings can be achieved using the raw API). When requesting this kind
of bindings python-cryptography must be available as request-gssapi will try
to import its x509 module to process the peer certificate.
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools >= 61.0.0", # Support for setuptools config in pyproject.toml
"setuptools >= 77.0.0", # Support for SPDX license expressions
]
build-backend = "setuptools.build_meta"

Expand All @@ -9,22 +9,23 @@ name = "requests-gssapi"
description = "A GSSAPI authentication handler for python-requests"
readme = "README.rst"
requires-python = ">=3.8"
license = { file = "LICENSE" }
license = "ISC"
authors = [
{ name = "Robbie Harwood", email = "rharwood@redhat.com" },
{ name = "Ian Cordasco" },
{ name = "Cory Benfield" },
{ name = "Michael Komitee" },
]
keywords = ["ansible", "debug", "lsp", "dap"]
keywords = ["gssapi", "requests", "auth"]
classifiers = [
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"requests >= 1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/requests_gssapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
"OPTIONAL",
"DISABLED",
)
__version__ = "1.3.0"
__version__ = "1.4.0"