summaryrefslogtreecommitdiff
path: root/requirements.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fixes to support Python 2.6 again.Andreas Maier2016-10-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Details: - Added Python 2.6 again to .travis.yml (it was removed in commit 4486bcb). - Replaced the use of dictionary comprehensions in `git/cmd.py` around line 800 with the code before that change (in commit 25a2ebf). Reason: dict comprehensions were introduced only in Python 2.7. - Changed the import source for `SkipTest` and `skipIf` from `unittest.case` to first trying `unittest` and upon ImportError from `unittest2`. This was done in `git/util.py` and in several testcases. Reason: `SkipTest` and `skipIf` were introduced to unittest only in Python 2.7, and `unittest2` is a backport of `unittest` additions to Python 2.6. - In git/test/lib/helper.py, fixed the definition of `assertRaisesRegex` to work on py26. - For Python 2.6, added the `unittest2` dependency to `requirements.txt` and changed `.travis.yml` to install `unittest2`. Because git/util.py uses SkipTest from unittest/unittest2, the dependency could not be added to `test-requirements.txt`. - Fixed an assertion in `git/test/test_index.py` to also allow a Python 2.6 specific exception message. - In `is_cygwin_git()` in `git/util.py`, replaced `check_output()` with `Popen()`. It was added in Python 2.7. - Enabled Python 2.6 for Windows: - Added Python 2.6 for MINGW in .appveyor.yml. - When defining `PROC_CREATIONFLAGS` in `git/cmd.py`, made use of certain win32 and subprocess flags that were introduced in Python 2.7, dependent on whether we run on Python 2.7 or higher. - In `AutoInterrupt.__del__()` in `git/cmd.py`, allowed for `os` not having `kill()`. `os.kill()` was added for Windows in Python 2.7 (For Linux, it existed in Python 2.6 already).
* ci, deps: no PY26, ddt>=1.1.1, CIs `pip install test-requirements`Kostis Anagnostopoulos2016-10-161-2/+1
| | | | + Use environment-markers in requirement files (see http://stackoverflow.com/a/33451105/548792).
* FIX tox/requirementsKostis Anagnostopoulos2016-09-291-0/+2
|
* fix(requirements): now works with toxSebastian Thiel2016-05-251-1/+0
|
* chore(requirements): update to actually required versionSebastian Thiel2016-02-201-1/+1
|
* Bumped gitdb requirement.0.3.4Sebastian Thiel2015-01-061-1/+1
| | | | This should help getting the latest version
* Bumped version, updated changelog, reduced code smellSebastian Thiel2015-01-041-1/+1
| | | | | There is more work to do though, as many imports are still incorrect. Also, there are still print statements
* Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-toxSebastian Thiel2014-11-141-1/+1
|\ | | | | | | | | | | | | Conflicts: README.md requirements.txt setup.py
| * List runtime dependencies in requirements.txtAntoine Musso2014-07-251-0/+2
| | | | | More and more packages are listing their dependencies in requirements.txt which make it trivial to maintain and install them.
* Assure requirements.txt ends up in the distribution as wellSebastian Thiel2014-11-141-1/+1
|
* Prepared release 0.3.20.3.2Sebastian Thiel2014-11-141-0/+2
It represents the latest state on github, which should be better than what's installed by default. [skip ci]