Skip to content

Commit

Permalink
Apply fix for issue #189
Browse files Browse the repository at this point in the history
Thanks to @mookman for providing the fix.
  • Loading branch information
riccardomurri committed Nov 20, 2015
1 parent 5919a88 commit aa2d612
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# @(#)setup.py
#
#
# Copyright (C) 2013, GC3, University of Zurich. All rights reserved.
# Copyright (C) 2013, 2015, GC3, University of Zurich. All rights reserved.
#
#
# This program is free software; you can redistribute it and/or modify it
Expand All @@ -26,6 +26,12 @@
import sys
import shutil

# fix Python issue 15881 (on Python <2.7.5)
try:
import multiprocessing
except ImportError:
pass

from setuptools.command import sdist

# Newer versions of setuptools do not have `finders` attribute.
Expand Down Expand Up @@ -65,7 +71,7 @@ def ansible_pb_files():
]

if sys.version_info[:2] == (2, 6):
# Python 2.6.
# Python 2.6.
# Google api python client *requires* argparse
# cfr. http://code.google.com/p/google-api-python-client/issues/detail?id=299
required_packages.append('argparse')
Expand Down

0 comments on commit aa2d612

Please sign in to comment.