diff options
author | Yobmod <yobmod@gmail.com> | 2021-06-23 02:22:34 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-06-23 02:22:34 +0100 |
commit | 5b6fe83f4d817a3b73b44df16cfb4f96bd4d9904 (patch) | |
tree | e9030835ef3a199a650e9d948c03eea99a09696d /setup.py | |
parent | 7ca97dcef3131a11dd5ef41d674bb6bd36608608 (diff) | |
download | gitpython-5b6fe83f4d817a3b73b44df16cfb4f96bd4d9904.tar.gz |
Update typing-extensions version in requirements.txt
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 5 |
1 files changed, 2 insertions, 3 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, @@ -123,10 +123,9 @@ setup( "Operating System :: MacOS :: MacOS X", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "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" ] ) |