Skip to content

Commit

Permalink
Bump to v4.0.0; require smmap package
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 23, 2020
1 parent 169dbcf commit 5f819b5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion doc/source/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@
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
Expand Down
2 changes: 1 addition & 1 deletion gitdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _init_externals():
__author__ = "Sebastian Thiel"
__contact__ = "[email protected]"
__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)


Expand Down
2 changes: 1 addition & 1 deletion gitdb/ext/smmap
Submodule smmap updated from a0060c to 1b92f4
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
smmap2>=2,<3
smmap>=3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Sebastian Thiel"
__contact__ = "[email protected]"
__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(
Expand All @@ -20,7 +20,7 @@
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
Expand Down

0 comments on commit 5f819b5

Please sign in to comment.