Merge branch 'develop' into refactor-code

This commit is contained in:
mergify[bot] 2026-02-16 06:33:07 +00:00 committed by GitHub
commit 8729b1b0d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ class TestCachingUtils(IntegrationTestCase):
# ensure single call if key is hashable
for arg in hashable_values:
external_service.call_count = 0
external_service.reset_mock()
for _ in range(2):
request_specific_api(arg, 13)
@ -83,7 +83,7 @@ class TestCachingUtils(IntegrationTestCase):
# multiple calls if key cannot be generated
for arg in unhashable_values:
external_service.call_count = 0
external_service.reset_mock()
for _ in range(2):
request_specific_api(arg, 13)

View file

@ -15,7 +15,7 @@ dependencies = [
"filetype~=1.2.0",
"GitPython~=3.1.45",
"Jinja2~=3.1.6",
"Pillow~=12.0.0",
"Pillow~=12.1.1",
"PyJWT~=2.10.1",
# We depend on internal attributes,
# do NOT add loose requirements on PyMySQL versions.