aboutsummaryrefslogtreecommitdiff
path: root/requirements.txt
AgeCommit message (Collapse)Author
2020-02-24v3.1.0Harmon
2020-02-17Restrict gitdb2 version to <4Harmon
2020-02-16Improve requirements.txt formatHarmon
2020-02-15Require latest gitdb version (with dropped python 2 support)Sebastian Thiel
2020-02-08Fix requirements.txt formattingHarmon
2019-08-22BF: remove ddt from requirements.txt since no ddt required at run time.Yaroslav Halchenko
Otherwise, since requirements.txt is loaded into install_requires, any installation which manages to miss installing ddt could cause setuptools to freak out. E.g. here is a traceback from running tests of datalad ====================================================================== ERROR: datalad.metadata.tests.test_aggregation.test_update_strategy ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/anaconda-2018.12-3.7/envs/test-gitpython/lib/python3.7/site-packages/datalad/metadata/metadata.py", line 511, in _get_metadata extractor_cls = extractors[mtype_key].load() File "/home/yoh/anaconda-2018.12-3.7/envs/test-gitpython/lib/python3.7/site-packages/pkg_resources/__init__.py", line 2442, in load self.require(*args, **kwargs) File "/home/yoh/anaconda-2018.12-3.7/envs/test-gitpython/lib/python3.7/site-packages/pkg_resources/__init__.py", line 2465, in require items = working_set.resolve(reqs, env, installer, extras=self.extras) File "/home/yoh/anaconda-2018.12-3.7/envs/test-gitpython/lib/python3.7/site-packages/pkg_resources/__init__.py", line 786, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The "ddt>=1.1.1" distribution was not found and is required by GitPython in conda environment. Original commit 74a0507f4eb468b842d1f644f0e43196cda290a1 which added ddt there unfortunately does not state the reason so probably was just a slip
2019-08-15Remove dependency on 'gitdb'; fixes #908Sebastian Thiel
2019-08-11Drop python 2 support, again (revert previous revert)Sebastian Thiel
This reverts commit 913d806f02cf50250d230f88b897350581f80f6b.
2019-07-29Revert "Drop python 2.7 support and help with encodings"Sebastian Thiel
This reverts commit dac619e4917b0ad43d836a534633d68a871aecca.
2019-07-20Drop python 2.7 support and help with encodingsSebastian Thiel
Fixes #312
2019-07-20Revert "This time, use test-requirements."Sebastian Thiel
This reverts commit 74a0507f4eb468b842d1f644f0e43196cda290a1. https://travis-ci.org/gitpython-developers/GitPython/jobs/561334516#L634
2019-07-20This time, use test-requirements.Sebastian Thiel
2019-07-20Revert "Merge branch 'PR-non-ascii-filenames' of ↵Sebastian Thiel
https://github.com/xarx00/GitPython into xarx00-PR-non-ascii-filenames" This reverts commit 3b13c115994461fb6bafe5dd06490aae020568c1, reversing changes made to da8aeec539da461b2961ca72049df84bf30473e1. It doesn't pass, unfortunately. Is it a travis issue? https://travis-ci.org/gitpython-developers/GitPython/jobs/561333763#L340
2019-07-20Merge branch 'PR-non-ascii-filenames' of https://github.com/xarx00/GitPython ↵Sebastian Thiel
into xarx00-PR-non-ascii-filenames
2019-05-05Fix setup.py and use of requirements files.James E. King III
2019-04-06builtins module is part of the future packagexarx00
2018-03-18Drop support for EOL Python 2.6Hugo
2016-10-24Fixes to support Python 2.6 again.Andreas Maier
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).
2016-10-16ci, deps: no PY26, ddt>=1.1.1, CIs `pip install test-requirements`Kostis Anagnostopoulos
+ Use environment-markers in requirement files (see http://stackoverflow.com/a/33451105/548792).
2016-09-29FIX tox/requirementsKostis Anagnostopoulos
2016-05-25fix(requirements): now works with toxSebastian Thiel
2016-02-20chore(requirements): update to actually required versionSebastian Thiel
2015-01-06Bumped gitdb requirement.0.3.4Sebastian Thiel
This should help getting the latest version
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-14Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-toxSebastian Thiel
Conflicts: README.md requirements.txt setup.py
2014-11-14Assure requirements.txt ends up in the distribution as wellSebastian Thiel
2014-11-14Prepared release 0.3.20.3.2Sebastian Thiel
It represents the latest state on github, which should be better than what's installed by default. [skip ci]
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.