diff options
author | Ted Sheibar <ted@openx.com> | 2014-08-19 17:24:11 -0700 |
---|---|---|
committer | Ted Sheibar <ted@openx.com> | 2014-08-19 17:24:11 -0700 |
commit | 5f5e071be6742c1cc96aa5f35543668493629423 (patch) | |
tree | 76b03670e07004b6e51be46299fbe2c9aca6d4f8 | |
parent | aa66d10bb6485af5941f1550dad77e825f384fed (diff) | |
download | gitpython-5f5e071be6742c1cc96aa5f35543668493629423.tar.gz |
Fixing 'tuple index out of range' issue with distutils/command/upload.py (v2.7.7): the 'requires' field tuple should be a list(https://github.com/gitpython-developers/GitPython/issues/186)
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ setup(name="GitPython", package_data={'git.test': ['fixtures/*']}, package_dir={'git': 'git'}, license="BSD License", - requires=('gitdb (>=0.5.1)',), + requires=['gitdb (>=0.5.1)',], install_requires='gitdb >= 0.5.1', zip_safe=False, long_description = """\ |