From 2f8320b7bf75b6ec375ade605a9812b4b2147de9 Mon Sep 17 00:00:00 2001 From: Yobmod Date: Wed, 24 Feb 2021 16:47:40 +0000 Subject: drop python 3.4, update .gitignore --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index ef9dd33d..652cbd17 100755 --- a/setup.py +++ b/setup.py @@ -98,7 +98,7 @@ setup( include_package_data=True, py_modules=build_py_modules("./git", excludes=["git.ext.*"]), package_dir={'git': 'git'}, - python_requires='>=3.4', + python_requires='>=3.5', install_requires=requirements, tests_require=requirements + test_requirements, zip_safe=False, @@ -122,10 +122,10 @@ setup( "Operating System :: MacOS :: MacOS X", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8" + "Programming Language :: Python :: 3.8", + ] ) -- cgit v1.2.1 From f9b0e75c07ccbf90a9f2e67873ffbe672bb1a859 Mon Sep 17 00:00:00 2001 From: yobmod Date: Fri, 26 Feb 2021 15:01:49 +0000 Subject: rebase on master --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 652cbd17..ef9dd33d 100755 --- a/setup.py +++ b/setup.py @@ -98,7 +98,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.4', install_requires=requirements, tests_require=requirements + test_requirements, zip_safe=False, @@ -122,10 +122,10 @@ setup( "Operating System :: MacOS :: MacOS X", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - + "Programming Language :: Python :: 3.8" ] ) -- cgit v1.2.1 From 803aca26d3f611f7dfd7148f093f525578d609ef Mon Sep 17 00:00:00 2001 From: yobmod Date: Fri, 26 Feb 2021 15:07:29 +0000 Subject: add python 3.9 support --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index ef9dd33d..500e88c8 100755 --- a/setup.py +++ b/setup.py @@ -126,6 +126,7 @@ setup( "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8" + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9" ] ) -- cgit v1.2.1