Skip to content

Commit 499eee7

Browse files
committed
Add tests for Python library versions in runtests.jl
1 parent 4ef1e8f commit 499eee7

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

test/runtests.jl

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,17 @@ using Test
1111
@test !PythonCall.pyisnull(FastPointQuery.rasterize )
1212
@test !PythonCall.pyisnull(FastPointQuery.pyjson )
1313
@test !PythonCall.pyisnull(FastPointQuery.splashsurf)
14-
@test !PythonCall.pyisnull(FastPointQuery.meshio )
14+
@test !PythonCall.pyisnull(FastPointQuery.meshio )
15+
16+
# 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("rasterize: ", pyhasattr(FastPointQuery.rasterize, "__version__") ? FastPointQuery.rasterize.__version__ : "N/A")
24+
println("splashsurf: ", pyhasattr(FastPointQuery.splashsurf, "__version__") ? FastPointQuery.splashsurf.__version__ : "N/A")
25+
println("meshio: ", FastPointQuery.meshio.__version__)
26+
println("================================\n")
27+

0 commit comments

Comments
 (0)