Skip to content

Commit 9a28925

Browse files
committed
Drop support for python 3.4/3.5; make use of smmap 5.0 which does the same
1 parent 47a74ca commit 9a28925

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

doc/source/changes.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog
33
#########
44

5+
*****
6+
4.0.8
7+
*****
8+
9+
* drop support for python 3.4 and 3.5 due to EOL
10+
* Updated upper bound for smmap requirement in setup.py
11+
(`#69 <https://github.com/gitpython-developers/gitdb/issues/76>`_)
12+
513
*****
614
4.0.7
715
*****

gitdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _init_externals():
3030
__author__ = "Sebastian Thiel"
3131
__contact__ = "[email protected]"
3232
__homepage__ = "https://github.com/gitpython-developers/gitdb"
33-
version_info = (4, 0, 7)
33+
version_info = (4, 0, 8)
3434
__version__ = '.'.join(str(i) for i in version_info)
3535

3636

setup.py

+3-5
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 = (4, 0, 7)
10+
version_info = (4, 0, 8)
1111
__version__ = '.'.join(str(i) for i in version_info)
1212

1313
setup(
@@ -20,9 +20,9 @@
2020
packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'),
2121
license="BSD License",
2222
zip_safe=False,
23-
install_requires=['smmap>=3.0.1,<5'],
23+
install_requires=['smmap>=3.0.1,<6'],
2424
long_description="""GitDB is a pure-Python git object database""",
25-
python_requires='>=3.4',
25+
python_requires='>=3.6',
2626
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
2727
classifiers=[
2828
"Development Status :: 5 - Production/Stable",
@@ -35,8 +35,6 @@
3535
"Operating System :: MacOS :: MacOS X",
3636
"Programming Language :: Python",
3737
"Programming Language :: Python :: 3",
38-
"Programming Language :: Python :: 3.4",
39-
"Programming Language :: Python :: 3.5",
4038
"Programming Language :: Python :: 3.6",
4139
"Programming Language :: Python :: 3.7",
4240
"Programming Language :: Python :: 3.8",

0 commit comments

Comments
 (0)