From 32da8e02a8d564992cc8b3f64a92b2492597e37c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 31 Dec 2012 20:28:25 -0500 Subject: [PATCH] swc-installation-test-2.py: Don't require a specific Bash version I have access to a machine running OS X 10.6.8, which has: $ bash --version GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0) Copyright (C) 2007 Free Software Foundation, Inc. That means no associative arrays, but for SWC purposes, it should still get the job done. All we really need is POSIX.2. --- swc-installation-test-2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swc-installation-test-2.py b/swc-installation-test-2.py index f1101ed..c28c02b 100755 --- a/swc-installation-test-2.py +++ b/swc-installation-test-2.py @@ -294,7 +294,7 @@ class CommandDependency (Dependency): for command,long_name,minimum_version in [ - ('bash', 'Bourne Again Shell', (4, 0)), + ('bash', 'Bourne Again Shell', None), ('easy_install', 'Setuptools easy_install', None), ('git', 'Git', (1, 8, 0)), ('hg', 'Mercurial', (2, 0, 0)), -- 2.26.2