summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-05-04 16:53:36 +0200
committerSebastian Thiel <byronimo@gmail.com>2014-05-04 16:55:27 +0200
commit1f225d4b8c3d7eb90038c246a289a18c7b655da2 (patch)
treedd909dd43a72e86cd9acd6a229ec0b5aefda1715
parent9e91a05aabb73cca7acec1cc0e07d8a562e31b45 (diff)
downloadgitpython-1f225d4b8c3d7eb90038c246a289a18c7b655da2.tar.gz
Added support for travis ci
-rw-r--r--.travis.yml7
-rw-r--r--README.md (renamed from README.rst)38
m---------git/ext/gitdb0
3 files changed, 25 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..6d91c8b6
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,7 @@
+language: python
+python:
+ - "2.6"
+ - "2.7"
+ # - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details)
+
+script: nosetests
diff --git a/README.rst b/README.md
index 128e74c0..c081f25f 100644
--- a/README.rst
+++ b/README.md
@@ -1,6 +1,6 @@
-==========
-GitPython
-==========
+## GitPython
+
+.. image:: https://travis-ci.org/gitpython-developers/GitPython.svg?branch=master :target: https://travis-ci.org/gitpython-developers/GitPython
GitPython is a python library used to interact with git repositories, high-level like git-porcelain, or low-level like git-plumbing.
@@ -8,21 +8,20 @@ It provides abstractions of git objects for easy access of repository data, and
The object database implementation is optimized for handling large quantities of objects and large datasets, which is achieved by using low-level structures and data streaming.
-REQUIREMENTS
-============
+### REQUIREMENTS
* Git ( tested with 1.8.3.4 )
* Python Nose - used for running the tests
- * Tested with nose 1.3.0
+ - Tested with nose 1.3.0
* Mock by Michael Foord used for tests
- * Tested with 1.0.1
+ - Tested with 1.0.1
+
+### INSTALL
-INSTALL
-=======
If you have downloaded the source code:
python setup.py install
-
+
or if you want to obtain a copy more easily:
pip install gitpython
@@ -31,8 +30,8 @@ A distribution package can be obtained for manual installation at:
http://pypi.python.org/pypi/GitPython
-SOURCE
-======
+### SOURCE
+
GitPython's git repo is available on GitHub, which can be browsed at:
@@ -43,23 +42,22 @@ and cloned using:
git clone git://github.com/gitpython-developers/GitPython.git git-python
-DOCUMENTATION
-=============
+### DOCUMENTATION
+
The html-compiled documentation can be found at the following URL:
http://packages.python.org/GitPython/
-MAILING LIST
-============
+### MAILING LIST
+
http://groups.google.com/group/git-python
-ISSUE TRACKER
-=============
+### ISSUE TRACKER
+
Issues are tracked on github:
https://github.com/gitpython-developers/GitPython/issues
-LICENSE
-=======
+### LICENSE
New BSD License. See the LICENSE file.
diff --git a/git/ext/gitdb b/git/ext/gitdb
-Subproject 6576d5503a64d124fd7bcf639cc8955918b3ac4
+Subproject 39de1127459b73b862f2b779bb4565ad6b4bd62