Skip to content
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 rest/python/client/flower_shop/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
dependencies = [
"cryptography>=42",
"pydantic>=2.12.0",
"ucp-sdk",
"ucp-sdk>=0.4.6,<0.5",
]

[dependency-groups]
Expand Down
4 changes: 2 additions & 2 deletions rest/python/server/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
line_item_create_request as line_item_create_req,
)
from ucp_sdk.models.schemas.shopping.types import (
shipping_destination as shipping_destination_req,
shipping_destination_create_request as shipping_destination_req,
)

FLAGS = flags.FLAGS
Expand Down Expand Up @@ -250,7 +250,7 @@ def _create_checkout_payload(
payment = payment_create_req.PaymentCreateRequest(instruments=[])

# Hierarchical Fulfillment Construction
destination = shipping_destination_req.ShippingDestination(
destination = shipping_destination_req.ShippingDestinationCreateRequest(
id="dest_1", address_country="US"
)
group = fulfillment_group_create_req.FulfillmentGroupCreateRequest(
Expand Down
2 changes: 1 addition & 1 deletion rest/python/server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
"greenlet>=3.0.0",
"fastapi-code-generator>=0.5.4",
"click==8.1.7",
"ucp-sdk",
"ucp-sdk>=0.4.6,<0.5",
"shortuuid",
"httpx>=0.26.0",
"cryptography>=42",
Expand Down
Loading