aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2016-04-24Automate steps to upload to PyPIVincent Driessen
2016-04-24Information on how to make a release on pypiSebastian Thiel
2015-09-25docs(README): remove link to (now deleted) mailing listSebastian Thiel
2015-08-08docs(README): removed coveralls linkSebastian Thiel
Coveralls was disabled a while ago because it would prevent merging PRs from the phone.
2015-06-26docs(README): travis badge for master, not 0.3Sebastian Thiel
2015-04-10docs(README): added code-climate badgeSebastian Thiel
We are not too good, but nothing to shy away from.
2015-04-08docs(README): remove future goalsSebastian Thiel
Because there are none.
2015-02-02An attempt to better steer questions and answers.Sebastian Thiel
Currently, people put it onto the mailing list and on stack overflow [ci skip]
2015-01-22Overhauled all tutorials, and placed them in a unit-test.Sebastian Thiel
That way they are protected from regression. Fixes #239
2015-01-21Added advance usage examples to tutorial and made minor fixes.Sebastian Thiel
GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations. Related to #239
2015-01-13Fixed youtube playlist linkSebastian Thiel
[ci skip]
2015-01-10Added twitch/youtube information to ReadmeSebastian Thiel
2015-01-06Updated branch in coverage descriptionSebastian Thiel
2015-01-06Updated readme to better represent current stateSebastian Thiel
And to trigger travis to build and work ...
2015-01-04initial set of adjustments to make (most) imports work.Sebastian Thiel
More to come, especially when it's about strings
2015-01-04Bumped version, updated changelog, reduced code smellSebastian Thiel
There is more work to do though, as many imports are still incorrect. Also, there are still print statements
2014-11-19Added build-the-docs badge and updated urlSebastian Thiel
2014-11-14Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-toxSebastian Thiel
Conflicts: README.md requirements.txt setup.py
2014-11-14Updated README to better represent current stateSebastian Thiel
2014-07-25Use tox to easily run tests in venvAntoine Musso
tox https://pypi.python.org/pypi/tox is a thin wrapper around virtualenv which let you craft a fresh python environement to execute command in. It creates the env with virtualenv, install dependencies, run python setup.py install in it and then execute whatever command you want it to do and report status. To do so I simply: - listed tests dependencies in test-requirements.txt (which are just nose and mock) - provide a tox.ini file which describe how to install the dependencies and execute nosetests - added the module 'coverage' to the list of test dependencies To run tests simply: pip install tox && tox That will execute the test command 'nosetests' using python2.6 and then python 2.7. The additional env 'cover' can be run using: tox -ecover.
2014-07-25List runtime dependencies in requirements.txtAntoine Musso
More and more packages are listing their dependencies in requirements.txt which make it trivial to maintain and install them.
2014-07-24Update README.md to use fixed dateAntoine Musso
Relative dates are not that precise, so instead of 3 years ago set it the last release date to July 2011.
2014-05-19Added coverage reportSebastian Thiel
2014-05-07Updated readme with development statusSebastian Thiel
[skip ci]
2014-05-04Fixed travis-ci url in ReadmeSebastian Thiel
2014-05-04Added support for travis ciSebastian Thiel