Skip to content

Commit 7496881

Browse files
committed
Replace manual version printing with pypkg_versions function for cleaner output in runtests.jl
1 parent 210f3dd commit 7496881

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

test/runtests.jl

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using FastPointQuery
2-
using CondaPkg
32
using PythonCall
43
using Test
54

@@ -14,13 +13,4 @@ using Test
1413
@test !PythonCall.pyisnull(FastPointQuery.meshio )
1514

1615
# Print versions of Python libraries
17-
println("\n=== Python Library Versions ===")
18-
println("numpy: ", FastPointQuery.np.__version__)
19-
println("shapely: ", FastPointQuery.shapely.__version__)
20-
println("open3d: ", FastPointQuery.o3d.__version__)
21-
println("trimesh: ", FastPointQuery.trimesh.__version__)
22-
println("rasterio: ", FastPointQuery.rasterio.__version__)
23-
println("splashsurf: ", pyhasattr(FastPointQuery.splashsurf, "__version__") ? FastPointQuery.splashsurf.__version__ : "N/A")
24-
println("meshio: ", FastPointQuery.meshio.__version__)
25-
println("================================\n")
26-
16+
FastPointQuery.pypkg_versions()

0 commit comments

Comments
 (0)