|
7 | 7 | __author__ = "Sebastian Thiel"
|
8 | 8 |
|
9 | 9 | __homepage__ = "https://github.com/gitpython-developers/gitdb"
|
10 |
| -version_info = (2, 0, 6) |
| 10 | +version_info = (3, 0, 0) |
11 | 11 | __version__ = '.'.join(str(i) for i in version_info)
|
12 | 12 |
|
13 | 13 | setup(
|
|
22 | 22 | zip_safe=False,
|
23 | 23 | install_requires=['smmap2 >= 2.0.0'],
|
24 | 24 | 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', |
26 | 26 | # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
27 | 27 | classifiers=[
|
28 | 28 | "Development Status :: 5 - Production/Stable",
|
|
34 | 34 | "Operating System :: Microsoft :: Windows",
|
35 | 35 | "Operating System :: MacOS :: MacOS X",
|
36 | 36 | "Programming Language :: Python",
|
37 |
| - "Programming Language :: Python :: 2", |
38 |
| - "Programming Language :: Python :: 2.7", |
39 | 37 | "Programming Language :: Python :: 3",
|
40 | 38 | "Programming Language :: Python :: 3.4",
|
41 | 39 | "Programming Language :: Python :: 3.5",
|
42 | 40 | "Programming Language :: Python :: 3.6",
|
| 41 | + "Programming Language :: Python :: 3.7" |
43 | 42 | ]
|
44 | 43 | )
|
0 commit comments