Skip to content

Commit b8629ec

Browse files
Merge branch 'main' into release/0.4
2 parents 4329a8e + 8a9501d commit b8629ec

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

ansys/api/geometry/v0/bodies.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ service Bodies
5050

5151
rpc GetTessellation(ansys.api.dbu.v0.EntityIdentifier) returns(GetTessellationResponse);
5252

53+
rpc GetTessellationStream(ansys.api.dbu.v0.EntityIdentifier) returns(stream GetTessellationResponse);
54+
5355
rpc GetEdges(ansys.api.dbu.v0.EntityIdentifier) returns (GetEdgesResponse);
5456

5557
rpc GetName(ansys.api.dbu.v0.EntityIdentifier) returns (GetNameResponse);

ansys/api/geometry/v0/commands.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ service Commands{
4747

4848
rpc UploadFile(UploadFileRequest) returns (UploadFileResponse);
4949

50+
rpc StreamFileUpload(stream UploadFileRequest) returns (UploadFileResponse);
51+
5052
rpc CreateSphere(CreateSphereRequest) returns (CreateSphereResponse);
5153

5254
rpc CreateTorus(CreateTorusRequest) returns (CreateTorusResponse);

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ requires = [
33
"setuptools >= 42.0.0",
44
"wheel",
55
"ansys_tools_protoc_helper>=0.4.0",
6-
"ansys-api-dbu==0.3.13",
6+
"ansys-api-dbu==0.3.14",
77
]
88
build-backend = "setuptools.build_meta:__legacy__"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
url=f"https://github.com/ansys/{package_name}",
4040
license="MIT",
4141
python_requires=">=3.10",
42-
install_requires=["grpcio~=1.44", "protobuf>=3.19,<6", "ansys-api-dbu==0.3.13"],
42+
install_requires=["grpcio~=1.44", "protobuf>=3.19,<6", "ansys-api-dbu==0.3.14"],
4343
packages=setuptools.find_namespace_packages(".", include=("ansys.*",)),
4444
package_data={
4545
"": ["*.proto", "*.pyi", "py.typed", "VERSION"],

0 commit comments

Comments
 (0)