Skip to content

Commit 38866bc

Browse files
committed
chore(rename): gitdb2 v2.0
v2 is chosen to better match the name.
1 parent d3f00ac commit 38866bc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gitdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _init_externals():
2929
__author__ = "Sebastian Thiel"
3030
__contact__ = "byronimo@gmail.com"
3131
__homepage__ = "https://github.com/gitpython-developers/gitdb"
32-
version_info = (0, 6, 4)
32+
version_info = (2, 0, 0)
3333
__version__ = '.'.join(str(i) for i in version_info)
3434

3535

gitdb/ext/smmap

Submodule smmap updated from 18e4aea to ac5df70

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
__author__ = "Sebastian Thiel"
88
__contact__ = "byronimo@gmail.com"
99
__homepage__ = "https://github.com/gitpython-developers/gitdb"
10-
version_info = (0, 6, 4)
10+
version_info = (2, 0, 0)
1111
__version__ = '.'.join(str(i) for i in version_info)
1212

1313
setup(
14-
name="gitdb",
14+
name="gitdb2",
1515
version=__version__,
1616
description="Git Object Database",
1717
author=__author__,
@@ -20,7 +20,7 @@
2020
packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'),
2121
license="BSD License",
2222
zip_safe=False,
23-
install_requires=['smmap >= 0.8.5'],
23+
install_requires=['smmap2 >= 2.0.0'],
2424
long_description="""GitDB is a pure-Python git object database""",
2525
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
2626
classifiers=[

0 commit comments

Comments
 (0)