Skip to content

Commit d05430e

Browse files
committed
Merge branch 'main' into release/0.2
2 parents 0ef69ac + a4dd63b commit d05430e

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

ansys/api/geometry/v0/commands.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
1+
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
22

33
syntax = "proto3";
44

@@ -17,10 +17,10 @@ service Commands{
1717

1818
rpc ProjectCurves(ProjectCurvesRequest) returns (ProjectCurvesResponse);
1919

20-
rpc ImprintProjectedCurves(ProjectCurvesRequest) returns (EntitiesCollection);
21-
2220
rpc ImprintCurves(ImprintCurvesRequest) returns (EntitiesCollection);
2321

22+
rpc ImprintProjectedCurves(ProjectCurvesRequest) returns (EntitiesCollection);
23+
2424
rpc PowerSelectFacesByAreaRange(PowerSelectFacesByAreaRangeRequest) returns (PowerSelectFacesByAreaRangeResponse);
2525

2626
rpc CreateBeamCircularProfile(CreateBeamCircularProfileRequest) returns(CreateBeamCircularProfileResponse);
@@ -222,4 +222,4 @@ message CreateTorusRequest {
222222

223223
message CreateTorusResponse {
224224
string id=1;
225-
}
225+
}

ansys/api/geometry/v0/designs.proto

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
1+
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
22
syntax = "proto3";
33
package ansys.api.geometry.v0.Designs;
44

@@ -67,7 +67,6 @@ message ExportResponse {
6767
message GetAsJsonRequest {
6868
string id=1;
6969
}
70-
7170
message GetAsJsonResponse {
7271
string json=1;
7372
}

ansys/api/geometry/v0/geometryapplication.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
1+
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
22
syntax = "proto3";
33
package ansys.api.geometry.v0.GeometryApplication;
44
option csharp_namespace = "Ansys.Api.Geometry.V0.GeometryApplication";

ansys/api/geometry/v0/models.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
1+
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
22
syntax = "proto3";
33
package ansys.api.geometry.v0;
44

@@ -367,6 +367,7 @@ enum PartExportFormat {
367367
PARTEXPORTFORMAT_STEP = 4;
368368
PARTEXPORTFORMAT_FMD = 5;
369369
PARTEXPORTFORMAT_IGES = 6;
370+
PARTEXPORTFORMAT_PMDB = 7;
370371
}
371372

372373
message UpdateState {

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
package_name = "ansys-api-geometry"
2222
dot_package_name = '.'.join(filter(None, package_info))
2323

24-
description = f"Autogenerated python gRPC interface package for {package_name}, built on {datetime.now().strftime('%H:%M:%S on %d %B %Y')}"
24+
description = f"Autogenerated Python gRPC interface package for {package_name}, built on {datetime.now().strftime('%H:%M:%S on %d %B %Y')}"
2525

2626
if __name__ == "__main__":
2727
setuptools.setup(
@@ -34,7 +34,7 @@
3434
description=description,
3535
long_description=long_description,
3636
long_description_content_type='text/markdown',
37-
url=f"https://github.com/pyansys/{package_name}",
37+
url=f"https://github.com/ansys/{package_name}",
3838
license="MIT",
3939
python_requires=">=3.7",
4040
install_requires=["grpcio~=1.47", "protobuf~=3.19"],
@@ -49,8 +49,8 @@
4949
},
5050
cmdclass=CMDCLASS_OVERRIDE,
5151
project_urls={
52-
'Documentation': 'https://github.com/pyansys/ansys-api-geometry/#readme',
53-
'Source': 'https://github.com/pyansys/ansys-api-geometry/',
54-
'Tracker': 'https://github.com/pyansys/ansys-api-geometry/issues/',
52+
'Documentation': 'https://github.com/ansys/ansys-api-geometry/#readme',
53+
'Source': 'https://github.com/ansys/ansys-api-geometry/',
54+
'Tracker': 'https://github.com/ansys/ansys-api-geometry/issues/',
5555
},
5656
)

0 commit comments

Comments
 (0)