Tags: binarymatt/GitPython
Tags
-#######->WARNING<-####### Directory structure changed, see commit me… …ssage If you use git-python as a submodule of your own project, which alters the sys.path to import it, you will have to adjust your code to take the changed directory structure into consideration. Previously, you would put the path ./git-python/lib into your syspath. All modules moved one level up into the 'git' subdirectory, which means that the 'git-python' directory now contains the 'git' root package. To allow git to be found, add ./git-python into your path. To finalize your update, run the following commands git submodule update --init --recursive As there will be left-over directories, consider running git-clean
Changed version to 0.3.1 (removed beta1) so that other projects can a… …ctually depend on git-python using the setuptools. Previously it would claim the version did not exist, probably because the setuptools are just comparing strings
bumped verison to 0.3.0 beta2 docs: added changelog, which moved from the CHANGES file into sphinx
setup.py: fixed requirement - its interesting to see that there are t… …wo different keywords for distutils and setuptools, the latter one doesn't read the ones of the first one, unfortunately
diff: by limiting the splitcount to 5, a subtle bug was introduced as… … the newline at the end of the split line was not split away automatically. Added test for this, and the trivial fix Wow, at least two people reviewd the code, but it slipped through anyway :)