Skip to content

Commit 93622fb

Browse files
committed
Update required httpx version for v0.18
1 parent 50a7bfe commit 93622fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

httpx_gssapi/exceptions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
This module contains the set of exceptions.
66
77
"""
8-
from httpx import HTTPError, Request, Response
8+
from httpx import RequestError, Request, Response
99

1010

11-
class MutualAuthenticationError(HTTPError):
11+
class MutualAuthenticationError(RequestError):
1212
"""Mutual Authentication Error"""
1313

1414
def __init__(self, *,
@@ -21,5 +21,5 @@ def __init__(self, *,
2121
)
2222

2323

24-
class SPNEGOExchangeError(HTTPError):
24+
class SPNEGOExchangeError(RequestError):
2525
"""SPNEGO Exchange Failed Error"""

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
httpx>=0.16,<0.18
1+
httpx>=0.16,<0.19
22
gssapi
33
pytest
44
k5test

0 commit comments

Comments
 (0)