From 4e6b7834f570b11a5ec265ad862529f3929aba82 Mon Sep 17 00:00:00 2001 From: Abi Heller-Wight <100801108+abiheller@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:25:16 -0600 Subject: [PATCH 1/2] Update atlases.py Fixed deprecated "read_csv" behavior 'error_bad_lines' and replaced with 'on_bad_lines' --- hipsta/cfg/atlases.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hipsta/cfg/atlases.py b/hipsta/cfg/atlases.py index 6404564..3cfe31d 100644 --- a/hipsta/cfg/atlases.py +++ b/hipsta/cfg/atlases.py @@ -100,8 +100,7 @@ def get_atlases(lut): header=None, skipinitialspace=True, skip_blank_lines=True, - error_bad_lines=False, - warn_bad_lines=True, + on_bad_lines='warn', ) LUTDICT = dict(zip(lut[0], lut[1])) From 012eefcb43e882ab0d43c7a2269141f7e6719eef Mon Sep 17 00:00:00 2001 From: Abi Heller-Wight <100801108+abiheller@users.noreply.github.com> Date: Mon, 20 Jan 2025 14:16:18 -0600 Subject: [PATCH 2/2] Update atlases.py Updated atlas key to aging atlas --- hipsta/cfg/atlases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hipsta/cfg/atlases.py b/hipsta/cfg/atlases.py index 3cfe31d..89a4d42 100644 --- a/hipsta/cfg/atlases.py +++ b/hipsta/cfg/atlases.py @@ -61,7 +61,7 @@ def get_atlases(lut): "tail", ] - LUTINDEX = [1, 2, 4, 3, 3, 5, 8, 8, 9, 10, 11, 12, 20, 5] + LUTINDEX = [1, 2, 4, 3, 3, 6, 8, 8, 10, 11, 12, 13, 5, 6] LUTDICT = dict(zip(LUTLABEL, LUTINDEX))