|
7 | 7 | __author__ = "Sebastian Thiel" |
8 | 8 | __contact__ = "byronimo@gmail.com" |
9 | 9 | __homepage__ = "https://github.com/gitpython-developers/gitdb" |
10 | | -version_info = (4, 0, 7) |
| 10 | +version_info = (4, 0, 8) |
11 | 11 | __version__ = '.'.join(str(i) for i in version_info) |
12 | 12 |
|
13 | 13 | setup( |
|
20 | 20 | packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'), |
21 | 21 | license="BSD License", |
22 | 22 | zip_safe=False, |
23 | | - install_requires=['smmap>=3.0.1,<5'], |
| 23 | + install_requires=['smmap>=3.0.1,<6'], |
24 | 24 | long_description="""GitDB is a pure-Python git object database""", |
25 | | - python_requires='>=3.4', |
| 25 | + python_requires='>=3.6', |
26 | 26 | # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
27 | 27 | classifiers=[ |
28 | 28 | "Development Status :: 5 - Production/Stable", |
|
35 | 35 | "Operating System :: MacOS :: MacOS X", |
36 | 36 | "Programming Language :: Python", |
37 | 37 | "Programming Language :: Python :: 3", |
38 | | - "Programming Language :: Python :: 3.4", |
39 | | - "Programming Language :: Python :: 3.5", |
40 | 38 | "Programming Language :: Python :: 3.6", |
41 | 39 | "Programming Language :: Python :: 3.7", |
42 | 40 | "Programming Language :: Python :: 3.8", |
|
0 commit comments