Skip to content

Commit

Permalink
Merge branch 'main' into release/0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Nov 22, 2024
2 parents 3a2b969 + 4edc161 commit f88d06c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions ansys/api/geometry/v0/unsupported.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright 2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";

package ansys.api.geometry.v0.unsupported;

import "ansys/api/dbu/v0/dbumodels.proto";

option csharp_namespace = "Ansys.Api.Geometry.V0.Unsupported";

service Unsupported {

// Turns the beep sound on or off
rpc SetSoundEnabled(SoundEnabledRequest) returns(ansys.api.dbu.v0.RequestResult);
}

message SoundEnabledRequest {
bool enabled = 1;
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ requires = [
"setuptools >= 42.0.0",
"wheel",
"ansys_tools_protoc_helper>=0.4.0",
"ansys-api-dbu==0.3.6",
"ansys-api-dbu==0.3.7",
]
build-backend = "setuptools.build_meta:__legacy__"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
url=f"https://github.com/ansys/{package_name}",
license="MIT",
python_requires=">=3.10",
install_requires=["grpcio~=1.44", "protobuf>=3.19,<6", "ansys-api-dbu==0.3.6"],
install_requires=["grpcio~=1.44", "protobuf>=3.19,<6", "ansys-api-dbu==0.3.7"],
packages=setuptools.find_namespace_packages(".", include=("ansys.*",)),
package_data={
"": ["*.proto", "*.pyi", "py.typed", "VERSION"],
Expand Down

0 comments on commit f88d06c

Please sign in to comment.