File tree Expand file tree Collapse file tree 4 files changed +4
-9
lines changed Expand file tree Collapse file tree 4 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ include CHANGES
44include AUTHORS
55include README
66include requirements.txt
7- include scripts/ssh_wrapper.py
7+ include git/ scripts/ssh_wrapper.sh
88
99graft git/test/fixtures
1010graft 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 3434from git .util import join_path_native
3535from git .exc import BadObject
3636from gitdb .util import bin_to_hex
37- from git .compat import (
38- string_types ,
39- # PY3
40- )
37+ from git .compat import string_types
4138from gitdb .test .lib import with_rw_directory
4239
4340import os
@@ -615,7 +612,6 @@ def test_rev_parse(self):
615612 # END handle multiple tokens
616613
617614 # try partial parsing
618- # if not (PY3 and 'TRAVIS' in os.environ):
619615 max_items = 40
620616 for i , binsha in enumerate (self .rorepo .odb .sha_iter ()):
621617 assert rev_parse (bin_to_hex (binsha )[:8 - (i % 2 )].decode ('ascii' )).binsha == binsha
@@ -624,7 +620,6 @@ def test_rev_parse(self):
624620 # which requires accessing packs, it has some additional overhead
625621 break
626622 # END for each binsha in repo
627- # end travis special handling
628623
629624 # missing closing brace commit^{tree
630625 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):
8282 url = "https://github.com/gitpython-developers/GitPython" ,
8383 packages = find_packages ('.' ),
8484 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/*' ] },
8686 package_dir = {'git' : 'git' },
8787 license = "BSD License" ,
8888 requires = ['gitdb (>=0.6.4)' ],
You can’t perform that action at this time.
0 commit comments