diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-02-23 09:49:12 +0800 |
|---|---|---|
| committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-02-23 09:49:12 +0800 |
| commit | 5f819b5736c31849212f2c249524b30e28da899d (patch) | |
| tree | 54dfe4899f007ddeb1bcd7b1f820feeb9fbe865a | |
| parent | 169dbcf930c21c08c66961fc43105cee8f5653d0 (diff) | |
| download | gitdb-4.0.0.tar.gz | |
Bump to v4.0.0; require smmap package4.0.0
https://github.com/gitpython-developers/gitdb/issues/59
| -rw-r--r-- | doc/source/changes.rst | 8 | ||||
| -rw-r--r-- | gitdb/__init__.py | 2 | ||||
| m--------- | gitdb/ext/smmap | 0 | ||||
| -rw-r--r-- | requirements.txt | 2 | ||||
| -rwxr-xr-x | setup.py | 4 |
5 files changed, 11 insertions, 5 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 954935b..84c2787 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -3,10 +3,16 @@ Changelog ######### ***** +4.0.0 +***** + +* restrict smmap to versions >= 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details. + +***** 3.0.3 ***** -* restrict smmap to versions < 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details. +* restrict smmap2 to versions < 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details. ***** 3.0.2 diff --git a/gitdb/__init__.py b/gitdb/__init__.py index 6b35a2d..c0dc58f 100644 --- a/gitdb/__init__.py +++ b/gitdb/__init__.py @@ -29,7 +29,7 @@ _init_externals() __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (3, 0, 3) +version_info = (4, 0, 0) __version__ = '.'.join(str(i) for i in version_info) diff --git a/gitdb/ext/smmap b/gitdb/ext/smmap -Subproject a0060cfdc9166bb0b3104e8015faf0689aa6daf +Subproject 1b92f4f4a4ff2bd1057b2b3fcf472e78c3d7abc diff --git a/requirements.txt b/requirements.txt index 92b8872..6fa271c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -smmap2>=2,<3 +smmap>=3 @@ -7,7 +7,7 @@ from setuptools import setup __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (3, 0, 3) +version_info = (4, 0, 0) __version__ = '.'.join(str(i) for i in version_info) setup( @@ -20,7 +20,7 @@ setup( packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'), license="BSD License", zip_safe=False, - install_requires=['smmap2>=2,<3'], + install_requires=['smmap>=3'], long_description="""GitDB is a pure-Python git object database""", python_requires='>=3.4', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
