-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2 is chosen to better match the name.
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ def _init_externals(): | |
__author__ = "Sebastian Thiel" | ||
__contact__ = "[email protected]" | ||
__homepage__ = "https://github.com/gitpython-developers/gitdb" | ||
version_info = (0, 6, 4) | ||
version_info = (2, 0, 0) | ||
__version__ = '.'.join(str(i) for i in version_info) | ||
|
||
|
||
|
Submodule smmap
updated
from 18e4ae to ac5df7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,11 +7,11 @@ | |
__author__ = "Sebastian Thiel" | ||
__contact__ = "[email protected]" | ||
__homepage__ = "https://github.com/gitpython-developers/gitdb" | ||
version_info = (0, 6, 4) | ||
version_info = (2, 0, 0) | ||
__version__ = '.'.join(str(i) for i in version_info) | ||
|
||
setup( | ||
name="gitdb", | ||
name="gitdb2", | ||
version=__version__, | ||
description="Git Object Database", | ||
author=__author__, | ||
|
@@ -20,7 +20,7 @@ | |
packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'), | ||
license="BSD License", | ||
zip_safe=False, | ||
install_requires=['smmap >= 0.8.5'], | ||
install_requires=['smmap2 >= 2.0.0'], | ||
long_description="""GitDB is a pure-Python git object database""", | ||
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
|