From: W. Trevor King Date: Tue, 1 Jan 2013 01:28:25 +0000 (-0500) Subject: swc-installation-test-2.py: Don't require a specific Bash version X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=32da8e02a8d564992cc8b3f64a92b2492597e37c;p=swc-workshop.git 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. --- 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)),