From 6b9385c99e559c231a533fbf5e852a23cae8924b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Mar 2025 05:26:39 +0000 Subject: [PATCH 1/2] Bump vws-python from 2024.9.21 to 2025.3.10.1 Bumps [vws-python](https://github.com/VWS-Python/vws-python) from 2024.9.21 to 2025.3.10.1. - [Release notes](https://github.com/VWS-Python/vws-python/releases) - [Changelog](https://github.com/VWS-Python/vws-python/blob/main/CHANGELOG.rst) - [Commits](https://github.com/VWS-Python/vws-python/compare/2024.09.21...2025.03.10.1) --- updated-dependencies: - dependency-name: vws-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 998fa1b8..dc82139b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,7 @@ optional-dependencies.dev = [ "types-requests==2.32.0.20250306", "urllib3==2.3.0", "vulture==2.14", - "vws-python==2024.9.21", + "vws-python==2025.3.10.1", "vws-test-fixtures==2023.3.5", "vws-web-tools==2024.10.6.1", "yamlfix==1.17.0", From 9956ef4c36689855a003b46d1d4d41a7e8bded47 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Tue, 11 Mar 2025 10:49:02 +0000 Subject: [PATCH 2/2] Account for moved `Response` in `vws` --- tests/mock_vws/test_add_target.py | 2 +- tests/mock_vws/test_query.py | 2 +- tests/mock_vws/test_update_target.py | 2 +- tests/mock_vws/utils/__init__.py | 2 +- tests/mock_vws/utils/assertions.py | 2 +- tests/mock_vws/utils/too_many_requests.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/mock_vws/test_add_target.py b/tests/mock_vws/test_add_target.py index 2e2cb882..3c61b933 100644 --- a/tests/mock_vws/test_add_target.py +++ b/tests/mock_vws/test_add_target.py @@ -24,7 +24,7 @@ ProjectInactiveError, TargetNameExistError, ) -from vws.types import Response +from vws.response import Response from mock_vws._constants import ResultCodes from tests.mock_vws.utils import make_image_file diff --git a/tests/mock_vws/test_query.py b/tests/mock_vws/test_query.py index 82bb18c8..7da395b9 100644 --- a/tests/mock_vws/test_query.py +++ b/tests/mock_vws/test_query.py @@ -34,7 +34,7 @@ ) from vws.exceptions.custom_exceptions import RequestEntityTooLargeError from vws.reports import TargetStatuses -from vws.types import Response +from vws.response import Response from vws_auth_tools import authorization_header, rfc_1123_date from mock_vws.database import VuforiaDatabase diff --git a/tests/mock_vws/test_update_target.py b/tests/mock_vws/test_update_target.py index 776cb9ee..3b6a0db1 100644 --- a/tests/mock_vws/test_update_target.py +++ b/tests/mock_vws/test_update_target.py @@ -23,7 +23,7 @@ TargetStatusNotSuccessError, ) from vws.reports import TargetStatuses -from vws.types import Response +from vws.response import Response from mock_vws._constants import ResultCodes from tests.mock_vws.utils import make_image_file diff --git a/tests/mock_vws/utils/__init__.py b/tests/mock_vws/utils/__init__.py index b3b92db6..241c13ec 100644 --- a/tests/mock_vws/utils/__init__.py +++ b/tests/mock_vws/utils/__init__.py @@ -12,7 +12,7 @@ import requests from PIL import Image from requests.structures import CaseInsensitiveDict -from vws.types import Response +from vws.response import Response from mock_vws._constants import ResultCodes diff --git a/tests/mock_vws/utils/assertions.py b/tests/mock_vws/utils/assertions.py index 936e207b..8ea4ea12 100644 --- a/tests/mock_vws/utils/assertions.py +++ b/tests/mock_vws/utils/assertions.py @@ -11,7 +11,7 @@ from zoneinfo import ZoneInfo from beartype import beartype -from vws.types import Response +from vws.response import Response from mock_vws._constants import ResultCodes diff --git a/tests/mock_vws/utils/too_many_requests.py b/tests/mock_vws/utils/too_many_requests.py index 2cb2b686..aae3742a 100644 --- a/tests/mock_vws/utils/too_many_requests.py +++ b/tests/mock_vws/utils/too_many_requests.py @@ -7,7 +7,7 @@ from beartype import beartype from vws.exceptions.custom_exceptions import ServerError from vws.exceptions.vws_exceptions import TooManyRequestsError -from vws.types import Response +from vws.response import Response @beartype