Skip to content

Commit 0441fdc

Browse files
committed
Don't use tuples in setup.py requirement specs
[skip ci] See #186 for the motivation of this fix.
1 parent 3287148 commit 0441fdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎setup.py‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _stamp_version(filename):
6363
else:
6464
print>>sys.stderr, "WARNING: Couldn't find version line in file %s"%filename
6565

66-
install_requires=('gitdb >= 0.6.0',)
66+
install_requires=['gitdb >= 0.6.0',]
6767
setup(name="GitPython",
6868
cmdclass={'build_py': build_py, 'sdist': sdist},
6969
version=VERSION,
@@ -76,9 +76,9 @@ def _stamp_version(filename):
7676
package_data={'git.test' : ['fixtures/*']},
7777
package_dir={'git':'git'},
7878
license="BSD License",
79-
requires=('gitdb (>=0.6.0)', ),
79+
requires=['gitdb (>=0.6.0)'],
8080
install_requires=install_requires,
81-
test_requirements=('mock', 'nose')+install_requires,
81+
test_requirements=['mock', 'nose']+install_requires,
8282
zip_safe=False,
8383
long_description="""\
8484
GitPython is a python library used to interact with Git repositories""",

0 commit comments

Comments
(0)