Skip to content

Commit 6f0592a

Browse files
committed
Switch from requests-kerberos to requests-gssapi
1 parent 88761aa commit 6f0592a

File tree

3 files changed

+17
-79
lines changed

3 files changed

+17
-79
lines changed

aws_adfs/html_roles_fetcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from requests_negotiate_sspi import HttpNegotiateAuth
2020
_auth_provider = HttpNegotiateAuth
2121
else:
22-
from requests_kerberos import HTTPKerberosAuth, OPTIONAL
22+
from requests_gssapi import HTTPKerberosAuth, OPTIONAL
2323
_auth_provider = HTTPKerberosAuth
2424
except ImportError:
2525
pass

poetry.lock

Lines changed: 11 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ botocore = ">=1.12.6"
3434
click = "*"
3535
configparser = "*"
3636
fido2 = "^0.8.1" # fido2 0.9.0 is a breaking release
37+
gssapi = [
38+
{ version = ">=1.7.0", markers = "platform_system != 'Windows'" },
39+
]
3740
lxml = "*"
3841
requests = "*"
39-
requests-kerberos = [
40-
{ version = "*", markers = "platform_system != 'Windows'" },
42+
requests-gssapi = [
43+
{ version = "^1.2.3", markers = "platform_system != 'Windows'" },
4144
]
4245
requests-negotiate-sspi= [
4346
{ version = ">=0.3.4", markers = "platform_system == 'Windows'" },

0 commit comments

Comments
 (0)