File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff 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 ])
Original file line number Diff line number Diff line change 11GitPython
2- gitdb >= 0.6.1
2+ gitdb >= 0.6.2
Original file line number Diff line number Diff 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 ' ]
7171if 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 ,
You can’t perform that action at this time.
0 commit comments