Skip to content

Commit 2d4ac15

Browse files
committed
Apply prepare changes
1 parent 7aeee92 commit 2d4ac15

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

bindings/python/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.10
33
# by the following command:
44
#
5-
# pip-compile bindings/python/requirements.in
5+
# pip-compile --pre bindings/python/requirements.in
66
#
7-
opengeode-core==14.*,>=14.19.1
7+
opengeode-core==14.*,>=14.19.2
88
# via -r bindings/python/requirements.in

bindings/python/src/inspector/surface_inspector.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ namespace geode
6464
return inspector.inspect_surface();
6565
} );
6666

67-
module.def( "inspect_triangulated_surface",
67+
const auto inspect_function_name2 =
68+
absl::StrCat( "inspect_triangulated_surface", dimension, "D" );
69+
module.def( inspect_function_name2.c_str(),
6870
[]( const TriangulatedSurface& surface ) {
6971
TriangulatedSurfaceInspector inspector{ surface };
7072
return inspector.inspect_surface();

0 commit comments

Comments
 (0)