Skip to content

Bump vws python #2556

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/test_add_target.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/test_update_target.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
TargetStatusNotSuccessError,
)
from vws.reports import TargetStatuses
from vws.types import Response
from vws.response import Response

Check warning on line 26 in tests/mock_vws/test_update_target.py

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_update_target.py#L26

Added line #L26 was not covered by tests

from mock_vws._constants import ResultCodes
from tests.mock_vws.utils import make_image_file
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/utils/assertions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/utils/too_many_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down