Compare commits
2 Commits
9da7cec1f5
...
da466b74f4
Author | SHA1 | Date | |
---|---|---|---|
da466b74f4 | |||
76ae576717 |
@ -2,6 +2,14 @@ Change Log
|
|||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
Version 0.7.1
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Released 2024/12/9
|
||||||
|
|
||||||
|
Fix test cases for compatibility with httpx 0.28.0.
|
||||||
|
|
||||||
|
|
||||||
Version 0.7.0
|
Version 0.7.0
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ dependencies = [
|
|||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
devel = [
|
devel = [
|
||||||
"httpx",
|
"httpx >= 0.20.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
@ -21,5 +21,5 @@
|
|||||||
from flask_digest_auth.algo import make_password_hash, calc_response
|
from flask_digest_auth.algo import make_password_hash, calc_response
|
||||||
from flask_digest_auth.auth import DigestAuth
|
from flask_digest_auth.auth import DigestAuth
|
||||||
|
|
||||||
VERSION: str = "0.7.0"
|
VERSION: str = "0.7.1"
|
||||||
"""The package version."""
|
"""The package version."""
|
||||||
|
@ -66,7 +66,8 @@ class AuthenticationTestCase(unittest.TestCase):
|
|||||||
"DIGEST_AUTH_REALM": REALM,
|
"DIGEST_AUTH_REALM": REALM,
|
||||||
})
|
})
|
||||||
self.__client: httpx.Client = httpx.Client(
|
self.__client: httpx.Client = httpx.Client(
|
||||||
app=app, base_url="https://testserver")
|
transport=httpx.WSGITransport(app=app),
|
||||||
|
base_url="https://testserver")
|
||||||
"""The testing client."""
|
"""The testing client."""
|
||||||
|
|
||||||
auth: DigestAuth = DigestAuth()
|
auth: DigestAuth = DigestAuth()
|
||||||
|
@ -91,7 +91,8 @@ class FlaskLoginTestCase(unittest.TestCase):
|
|||||||
"DIGEST_AUTH_REALM": REALM,
|
"DIGEST_AUTH_REALM": REALM,
|
||||||
})
|
})
|
||||||
self.__client: httpx.Client = httpx.Client(
|
self.__client: httpx.Client = httpx.Client(
|
||||||
app=self.app, base_url="https://testserver")
|
transport=httpx.WSGITransport(app=self.app),
|
||||||
|
base_url="https://testserver")
|
||||||
"""The testing client."""
|
"""The testing client."""
|
||||||
|
|
||||||
self.__has_flask_login: bool = True
|
self.__has_flask_login: bool = True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user