diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 17:20:44 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 17:21:27 +0100 |
commit | b18fd3fd13d0a1de0c3067292796e011f0f01a05 (patch) | |
tree | af510c10855d7a7a7b05d17acc519cb965eea9ab | |
parent | 5d0ad081ca0e723ba2a12c876b4cd1574485c726 (diff) | |
download | gitpython-b18fd3fd13d0a1de0c3067292796e011f0f01a05.tar.gz |
Bumped gitdb requirement.0.3.4
This should help getting the latest version
-rw-r--r-- | git/test/test_base.py | 3 | ||||
-rw-r--r-- | requirements.txt | 2 | ||||
-rwxr-xr-x | setup.py | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/git/test/test_base.py b/git/test/test_base.py index f581138b..91b9d005 100644 --- a/git/test/test_base.py +++ b/git/test/test_base.py @@ -118,9 +118,8 @@ class TestBase(TestBase): file_path = os.path.join(rw_repo.working_dir, filename) open(file_path, "wb").write(b'something') - if os.name == 'nt': - # on windows, there is no way this works, see images on + # on windows, there is no way this works, see images on # https://github.com/gitpython-developers/GitPython/issues/147#issuecomment-68881897 # Therefore, it must be added using the python implementation rw_repo.index.add([file_path]) diff --git a/requirements.txt b/requirements.txt index eedd6466..19fd5a08 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ GitPython -gitdb>=0.6.1 +gitdb>=0.6.2 @@ -67,7 +67,7 @@ def _stamp_version(filename): else: print("WARNING: Couldn't find version line in file %s" % filename, file=sys.stderr) -install_requires = ['gitdb >= 0.6.1'] +install_requires = ['gitdb >= 0.6.2'] if sys.version_info[:2] < (2, 7): install_requires.append('ordereddict') # end @@ -85,7 +85,7 @@ setup( package_data={'git.test': ['fixtures/*']}, package_dir={'git': 'git'}, license="BSD License", - requires=['gitdb (>=0.6.1)'], + requires=['gitdb (>=0.6.2)'], install_requires=install_requires, test_requirements=['mock', 'nose'] + install_requires, zip_safe=False, |