diff options
author | Bert Wesarg <bert.wesarg@googlemail.com> | 2021-03-11 16:35:24 +0100 |
---|---|---|
committer | Bert Wesarg <bert.wesarg@googlemail.com> | 2021-03-13 20:34:07 +0100 |
commit | 45d1cd59d39227ee6841042eab85116a59a26d22 (patch) | |
tree | 843ffd92ec49921a92fc8f44eeced3c8afcf03b2 /setup.py | |
parent | 690722a611a25a1afcdb0163d3cfd0a8c89d1d04 (diff) | |
download | gitpython-45d1cd59d39227ee6841042eab85116a59a26d22.tar.gz |
Remove support for Python 3.5
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,7 +99,7 @@ setup( include_package_data=True, py_modules=build_py_modules("./git", excludes=["git.ext.*"]), package_dir={'git': 'git'}, - python_requires='>=3.5', + python_requires='>=3.6', install_requires=requirements, tests_require=requirements + test_requirements, zip_safe=False, @@ -127,6 +127,6 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9" + "Programming Language :: Python :: 3.9" ] ) |