Skip to content

Commit df73d7f

Browse files
committed
Release 3.0.0
1 parent 2f9a799 commit df73d7f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Diff for: 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 = (2, 0, 6)
32+
version_info = (3, 0, 0)
3333
__version__ = '.'.join(str(i) for i in version_info)
3434

3535

Diff for: setup.py

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

1313
setup(
@@ -22,7 +22,7 @@
2222
zip_safe=False,
2323
install_requires=['smmap2 >= 2.0.0'],
2424
long_description="""GitDB is a pure-Python git object database""",
25-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
25+
python_requires='>=3.4',
2626
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
2727
classifiers=[
2828
"Development Status :: 5 - Production/Stable",
@@ -34,11 +34,10 @@
3434
"Operating System :: Microsoft :: Windows",
3535
"Operating System :: MacOS :: MacOS X",
3636
"Programming Language :: Python",
37-
"Programming Language :: Python :: 2",
38-
"Programming Language :: Python :: 2.7",
3937
"Programming Language :: Python :: 3",
4038
"Programming Language :: Python :: 3.4",
4139
"Programming Language :: Python :: 3.5",
4240
"Programming Language :: Python :: 3.6",
41+
"Programming Language :: Python :: 3.7"
4342
]
4443
)

0 commit comments

Comments
 (0)