Skip to content

Commit f3d91ca

Browse files
committed
Bumped version to 0.3.6
Unfortunately, installation of a executable script has proven to be so difficult thanks setuptools gloriousness, which will force me to remove that feature
1 parent ffefb15 commit f3d91ca

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

Diff for: MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include CHANGES
44
include AUTHORS
55
include README
66
include requirements.txt
7-
include scripts/ssh_wrapper.py
7+
include git/scripts/ssh_wrapper.sh
88

99
graft git/test/fixtures
1010
graft git/test/performance

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.5
1+
0.3.6

Diff for: git/test/test_repo.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@
3434
from git.util import join_path_native
3535
from git.exc import BadObject
3636
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
4138
from gitdb.test.lib import with_rw_directory
4239

4340
import 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')

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff 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)'],

0 commit comments

Comments
 (0)