From 9b2b392fc3686b6b5646ef2c5f7b6f547eded96d Mon Sep 17 00:00:00 2001 From: kylegibson15 Date: Sat, 30 Dec 2023 00:10:54 -0700 Subject: [PATCH 1/2] add mac os sonoma to _osx_codename_map --- src/rospkg/os_detect.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rospkg/os_detect.py b/src/rospkg/os_detect.py index eae76ad..3ebd0e1 100644 --- a/src/rospkg/os_detect.py +++ b/src/rospkg/os_detect.py @@ -318,7 +318,8 @@ def get_codename(self): '10.15': 'catalina', '11': 'big sur', '12': 'monterey', - '13': 'ventura' + '13': 'ventura', + '14': 'sonoma' } From 07187baec80f06c3d36f2ef7b97dc9f04252e6fa Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 16 Feb 2024 20:51:29 -0600 Subject: [PATCH 2/2] Update src/rospkg/os_detect.py --- src/rospkg/os_detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rospkg/os_detect.py b/src/rospkg/os_detect.py index 3ebd0e1..ad32836 100644 --- a/src/rospkg/os_detect.py +++ b/src/rospkg/os_detect.py @@ -319,7 +319,7 @@ def get_codename(self): '11': 'big sur', '12': 'monterey', '13': 'ventura', - '14': 'sonoma' + '14': 'sonoma', }