From 94517379f5993e1f0f8e79c379ebcc66c9cdf753 Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco Date: Fri, 17 May 2024 05:31:36 -0500 Subject: [PATCH 1/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2c65c04..eebb87d 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def run_tests(self): py_modules=['pep8ext_naming'], install_requires=['flake8>=5.0.0'], zip_safe=False, - python_requires='>=3.7', + python_requires='>=3.i', entry_points={ 'flake8.extension': [ 'N8 = pep8ext_naming:NamingChecker', From a960999da40e598c0bd6b5de099fcad2f5c0d5ac Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco Date: Fri, 17 May 2024 06:18:36 -0500 Subject: [PATCH 2/2] Fix python_version That's what I get for editing after I first woke up on my phone. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eebb87d..a756d43 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def run_tests(self): py_modules=['pep8ext_naming'], install_requires=['flake8>=5.0.0'], zip_safe=False, - python_requires='>=3.i', + python_requires='>=3.8', entry_points={ 'flake8.extension': [ 'N8 = pep8ext_naming:NamingChecker',