Compare commits

..

No commits in common. "da466b74f4260f203cb3b774d669cfea2a4807ec" and "9da7cec1f598ebf45032f698b3c465875fbb601c" have entirely different histories.

5 changed files with 4 additions and 14 deletions

View File

@ -2,14 +2,6 @@ Change Log
==========
Version 0.7.1
-------------
Released 2024/12/9
Fix test cases for compatibility with httpx 0.28.0.
Version 0.7.0
-------------

View File

@ -39,7 +39,7 @@ dependencies = [
[project.optional-dependencies]
devel = [
"httpx >= 0.20.0",
"httpx",
]
[project.urls]

View File

@ -21,5 +21,5 @@
from flask_digest_auth.algo import make_password_hash, calc_response
from flask_digest_auth.auth import DigestAuth
VERSION: str = "0.7.1"
VERSION: str = "0.7.0"
"""The package version."""

View File

@ -66,8 +66,7 @@ class AuthenticationTestCase(unittest.TestCase):
"DIGEST_AUTH_REALM": REALM,
})
self.__client: httpx.Client = httpx.Client(
transport=httpx.WSGITransport(app=app),
base_url="https://testserver")
app=app, base_url="https://testserver")
"""The testing client."""
auth: DigestAuth = DigestAuth()

View File

@ -91,8 +91,7 @@ class FlaskLoginTestCase(unittest.TestCase):
"DIGEST_AUTH_REALM": REALM,
})
self.__client: httpx.Client = httpx.Client(
transport=httpx.WSGITransport(app=self.app),
base_url="https://testserver")
app=self.app, base_url="https://testserver")
"""The testing client."""
self.__has_flask_login: bool = True