File tree 4 files changed +4
-9
lines changed
4 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ include CHANGES
4
4
include AUTHORS
5
5
include README
6
6
include requirements.txt
7
- include scripts/ssh_wrapper.py
7
+ include git/ scripts/ssh_wrapper.sh
8
8
9
9
graft git/test/fixtures
10
10
graft git/test/performance
Original file line number Diff line number Diff line change 1
- 0.3.5
1
+ 0.3.6
Original file line number Diff line number Diff line change 34
34
from git .util import join_path_native
35
35
from git .exc import BadObject
36
36
from gitdb .util import bin_to_hex
37
- from git .compat import (
38
- string_types ,
39
- # PY3
40
- )
37
+ from git .compat import string_types
41
38
from gitdb .test .lib import with_rw_directory
42
39
43
40
import os
@@ -615,7 +612,6 @@ def test_rev_parse(self):
615
612
# END handle multiple tokens
616
613
617
614
# try partial parsing
618
- # if not (PY3 and 'TRAVIS' in os.environ):
619
615
max_items = 40
620
616
for i , binsha in enumerate (self .rorepo .odb .sha_iter ()):
621
617
assert rev_parse (bin_to_hex (binsha )[:8 - (i % 2 )].decode ('ascii' )).binsha == binsha
@@ -624,7 +620,6 @@ def test_rev_parse(self):
624
620
# which requires accessing packs, it has some additional overhead
625
621
break
626
622
# END for each binsha in repo
627
- # end travis special handling
628
623
629
624
# missing closing brace commit^{tree
630
625
self .failUnlessRaises (ValueError , rev_parse , '0.1.4^{tree' )
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def _stamp_version(filename):
82
82
url = "https://github.com/gitpython-developers/GitPython" ,
83
83
packages = find_packages ('.' ),
84
84
py_modules = ['git.' + f [:- 3 ] for f in os .listdir ('./git' ) if f .endswith ('.py' )],
85
- package_data = {'git.test' : ['fixtures/*' ]},
85
+ package_data = {'git.test' : ['fixtures/*' ], 'git' : [ 'scripts/*' ] },
86
86
package_dir = {'git' : 'git' },
87
87
license = "BSD License" ,
88
88
requires = ['gitdb (>=0.6.4)' ],
You can’t perform that action at this time.
0 commit comments