Skip to content

Commit

Permalink
release/v0.33.0 (#779)
Browse files Browse the repository at this point in the history
Co-authored-by: jckras <[email protected]>
  • Loading branch information
github-actions[bot] and jckras authored Nov 4, 2024
1 parent e7d34fa commit fd55651
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/viam/app/data_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from datetime import datetime
from pathlib import Path
from typing import Any, Dict, List, Mapping, Optional, Sequence, Tuple, Union
import bson

import bson
from google.protobuf.struct_pb2 import Struct
from grpclib.client import Channel, Stream

Expand Down
2 changes: 1 addition & 1 deletion src/viam/version_metadata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.32.0"
__version__ = "0.33.0"

API_VERSION = "v0.1.354"
SDK_VERSION = __version__
5 changes: 3 additions & 2 deletions tests/mocks/services.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from datetime import datetime
from typing import Any, Dict, List, Mapping, Optional, Sequence, Union

import bson
import numpy as np
from grpclib.server import Stream
from numpy.typing import NDArray
from datetime import datetime
import bson

from viam.app.data_client import DataClient
from viam.gen.app.v1.app_pb2 import FragmentHistoryEntry, GetFragmentHistoryRequest, GetFragmentHistoryResponse
Expand Down Expand Up @@ -793,6 +793,7 @@ async def SetSmartMachineCredentials(
self.cloud_config = request.cloud
await stream.send_message(SetSmartMachineCredentialsResponse())


class MockData(UnimplementedDataServiceBase):
def __init__(
self,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data_client.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from datetime import datetime
from typing import List

import pytest
from google.protobuf.timestamp_pb2 import Timestamp
from grpclib.testing import ChannelFor

from datetime import datetime
from viam.app.data_client import DataClient
from viam.proto.app.data import Annotations, BinaryData, BinaryID, BinaryMetadata, BoundingBox, CaptureMetadata, Filter, Order
from viam.utils import create_filter
Expand Down

0 comments on commit fd55651

Please sign in to comment.