diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-06-16 10:58:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 10:58:09 +0800 |
commit | cefc0df04440215dad825e109807aecf39d6180b (patch) | |
tree | 619f69dfeff694643a0ca940961d8baf5bb95eaf /setup.py | |
parent | 617c09e70bfd54af1c88b4d2c892b8d287747542 (diff) | |
parent | 45d1cd59d39227ee6841042eab85116a59a26d22 (diff) | |
download | gitpython-cefc0df04440215dad825e109807aecf39d6180b.tar.gz |
Merge pull request #1201 from bertwesarg/remove-py35
DNM before 2021-09-05: 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" ] ) |