Skip to content

Commit 5f819b5

Browse files
committed
Bump to v4.0.0; require smmap package
#59
1 parent 169dbcf commit 5f819b5

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

doc/source/changes.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22
Changelog
33
#########
44

5+
*****
6+
4.0.0
7+
*****
8+
9+
* restrict smmap to versions >= 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details.
10+
511
*****
612
3.0.3
713
*****
814

9-
* restrict smmap to versions < 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details.
15+
* restrict smmap2 to versions < 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details.
1016

1117
*****
1218
3.0.2

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__ = "[email protected]"
3131
__homepage__ = "https://github.com/gitpython-developers/gitdb"
32-
version_info = (3, 0, 3)
32+
version_info = (4, 0, 0)
3333
__version__ = '.'.join(str(i) for i in version_info)
3434

3535

gitdb/ext/smmap

Submodule smmap updated from a0060cf to 1b92f4f

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
smmap2>=2,<3
1+
smmap>=3

setup.py

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

1313
setup(
@@ -20,7 +20,7 @@
2020
packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'),
2121
license="BSD License",
2222
zip_safe=False,
23-
install_requires=['smmap2>=2,<3'],
23+
install_requires=['smmap>=3'],
2424
long_description="""GitDB is a pure-Python git object database""",
2525
python_requires='>=3.4',
2626
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)