Skip to content

Commit 5f5e071

Browse files
author
Ted Sheibar
committed
Fixing 'tuple index out of range' issue with distutils/command/upload.py (v2.7.7): the 'requires' field tuple should be a list(gitpython-developers#186)
1 parent aa66d10 commit 5f5e071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _stamp_version(filename):
7575
package_data={'git.test': ['fixtures/*']},
7676
package_dir={'git': 'git'},
7777
license="BSD License",
78-
requires=('gitdb (>=0.5.1)',),
78+
requires=['gitdb (>=0.5.1)',],
7979
install_requires='gitdb >= 0.5.1',
8080
zip_safe=False,
8181
long_description = """\

0 commit comments

Comments
 (0)