Skip to content

Commit 3cf2bd5

Browse files
committed
Fix filterwarnings for neo4j to_df feature
1 parent 9a3df31 commit 3cf2bd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/query_runner/neo4j_query_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __configure_warnings_filter(self) -> None:
137137
# be supported in the `graphdatascience` package.
138138
warnings.filterwarnings(
139139
"ignore",
140-
message=r"^pandas support is experimental and might be changed or removed in future versions$",
140+
message=r".*pandas support is experimental and might be changed or removed in future versions.*",
141141
)
142142

143143
warnings.filterwarnings("ignore", message=r".*The procedure has a deprecated field.*by 'gds.*")

0 commit comments

Comments
 (0)