Skip to content

Commit b18fd3f

Browse files
committed
Bumped gitdb requirement.
This should help getting the latest version
1 parent 5d0ad08 commit b18fd3f

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

‎git/test/test_base.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ def test_add_unicode(self, rw_repo):
118118
file_path = os.path.join(rw_repo.working_dir, filename)
119119
open(file_path, "wb").write(b'something')
120120

121-
122121
if os.name == 'nt':
123-
# on windows, there is no way this works, see images on
122+
# on windows, there is no way this works, see images on
124123
# https://github.com/gitpython-developers/GitPython/issues/147#issuecomment-68881897
125124
# Therefore, it must be added using the python implementation
126125
rw_repo.index.add([file_path])

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
GitPython
2-
gitdb>=0.6.1
2+
gitdb>=0.6.2

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _stamp_version(filename):
6767
else:
6868
print("WARNING: Couldn't find version line in file %s" % filename, file=sys.stderr)
6969

70-
install_requires = ['gitdb >= 0.6.1']
70+
install_requires = ['gitdb >= 0.6.2']
7171
if sys.version_info[:2] < (2, 7):
7272
install_requires.append('ordereddict')
7373
# end
@@ -85,7 +85,7 @@ def _stamp_version(filename):
8585
package_data={'git.test': ['fixtures/*']},
8686
package_dir={'git': 'git'},
8787
license="BSD License",
88-
requires=['gitdb (>=0.6.1)'],
88+
requires=['gitdb (>=0.6.2)'],
8989
install_requires=install_requires,
9090
test_requirements=['mock', 'nose'] + install_requires,
9191
zip_safe=False,

0 commit comments

Comments
 (0)