From f210143f839ab1c2e34f624362ccbf16ee24c153 Mon Sep 17 00:00:00 2001 From: satojkovic Date: Mon, 5 May 2014 17:26:46 +0900 Subject: [PATCH 1/3] Remove duplicate word from the usage message --- glue/bin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue/bin.py b/glue/bin.py index c6443fc..fe2c4c8 100755 --- a/glue/bin.py +++ b/glue/bin.py @@ -16,7 +16,7 @@ def main(argv=None): argv = (argv or sys.argv)[1:] - parser = argparse.ArgumentParser(usage=("usage: %(prog)s [source | --source | -s] [output | --output | -o]")) + parser = argparse.ArgumentParser(usage=("%(prog)s [source | --source | -s] [output | --output | -o]")) parser.add_argument("--source", "-s", dest="source", From b386c01c8acc8de39e671418f56d7f35dc799420 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 19 Jun 2014 21:14:52 -0700 Subject: [PATCH 2/3] Enable automated testing on Python 3.4 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 135a3a4..623c6e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python python: + - "3.4" - "3.3" - "2.7" - "2.6" From ad4c75d37623a3fd8716f6e3e1cb6803a637cd28 Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Fri, 27 Jun 2014 11:22:45 -0400 Subject: [PATCH 3/3] brew should not install packages using sudo Error: Cowardly refusing to `sudo brew install` You can use brew with sudo, but only if the brew executable is owned by root. However, this is both not recommended and completely unsupported so do so at your own risk. --- docs/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.rst b/docs/installation.rst index 438e589..cd45b51 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -12,7 +12,7 @@ Before installing ``Homebrew`` you'll need to install Xcode, then you can follow .. code-block:: bash - $ sudo brew install jpeg + $ brew install jpeg $ sudo pip install glue .. note::