summaryrefslogtreecommitdiff
path: root/requirements.txt
Commit message (Collapse)AuthorAgeFilesLines
* Revert the use of typing_extensions in py3.8+Michał Górny2021-12-011-1/+1
| | | | | | The original change requiring py3.10 TypeGuard (and matching typing_extensions) has been reverted, so revert the requirement on typing_extensions as well.
* Update requirements.txtDominic2021-07-241-1/+1
|
* update typing-extensions to 3.10.0Dominic2021-07-231-1/+1
|
* Update typing-extensions dependancy to <py3.10 for typeguardYobmod2021-06-241-1/+1
|
* Update typing-extensions version in requirements.txtYobmod2021-06-231-1/+1
|
* add initial types to remote.pyyobmod2021-05-031-0/+1
|
* v3.1.0Harmon2020-02-241-1/+1
|
* Restrict gitdb2 version to <4Harmon2020-02-171-1/+1
|
* Improve requirements.txt formatHarmon2020-02-161-1/+1
|
* Require latest gitdb version (with dropped python 2 support)Sebastian Thiel2020-02-151-1/+1
|
* Fix requirements.txt formattingHarmon2020-02-081-1/+1
|
* BF: remove ddt from requirements.txt since no ddt required at run time.Yaroslav Halchenko2019-08-221-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Remove dependency on 'gitdb'; fixes #908Sebastian Thiel2019-08-151-1/+0
|
* Drop python 2 support, again (revert previous revert)Sebastian Thiel2019-08-111-0/+2
| | | | This reverts commit 913d806f02cf50250d230f88b897350581f80f6b.
* Revert "Drop python 2.7 support and help with encodings"Sebastian Thiel2019-07-291-2/+0
| | | | This reverts commit dac619e4917b0ad43d836a534633d68a871aecca.
* Drop python 2.7 support and help with encodingsSebastian Thiel2019-07-201-0/+2
| | | | Fixes #312
* Revert "This time, use test-requirements."Sebastian Thiel2019-07-201-3/+0
| | | | | | This reverts commit 74a0507f4eb468b842d1f644f0e43196cda290a1. https://travis-ci.org/gitpython-developers/GitPython/jobs/561334516#L634
* This time, use test-requirements.Sebastian Thiel2019-07-201-0/+3
|
* Revert "Merge branch 'PR-non-ascii-filenames' of ↵Sebastian Thiel2019-07-201-3/+0
| | | | | | | | | | 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
* Merge branch 'PR-non-ascii-filenames' of https://github.com/xarx00/GitPython ↵Sebastian Thiel2019-07-201-0/+3
|\ | | | | | | into xarx00-PR-non-ascii-filenames
| * builtins module is part of the future packagexarx002019-04-061-0/+1
| |
* | Fix setup.py and use of requirements files.James E. King III2019-05-051-2/+1
|/
* Drop support for EOL Python 2.6Hugo2018-03-181-1/+0
|
* 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]