-
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.
Bump to v4.0.0; require smmap package
- Loading branch information
Showing
5 changed files
with
12 additions
and
6 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
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 = (3, 0, 3) | ||
version_info = (4, 0, 0) | ||
__version__ = '.'.join(str(i) for i in version_info) | ||
|
||
|
||
|
Submodule smmap
updated
from a0060c to 1b92f4
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 |
---|---|---|
@@ -1 +1 @@ | ||
smmap2>=2,<3 | ||
smmap>=3 |
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,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( | ||
|
@@ -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 | ||
|