From 2c23633e5e3db048b82c809cab24225e298cdc06 Mon Sep 17 00:00:00 2001 From: Jonathan Rayner Date: Thu, 15 Feb 2024 16:58:29 +0000 Subject: [PATCH] chore: replace deprecated `delim_whitespace` arg with recommended update from upstream --- pyelmer/post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyelmer/post.py b/pyelmer/post.py index a396746..c71988d 100644 --- a/pyelmer/post.py +++ b/pyelmer/post.py @@ -257,4 +257,4 @@ def dat_to_dataframe(dat_file): or "Variables in columns of matrix" in line ): names_start = True - return pd.read_table(dat_file, names=names, delim_whitespace=True) + return pd.read_table(dat_file, names=names, sep='\s+')