File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11Changes
22=======
33
4+ 0.15.0 - 2025-04-29
5+ -------------------
6+
7+ * Add support for Python 3.13.
8+ * Drop support for Python 3.8.
9+ * N808 checks type variable names use the CapWords convention and have an appropriate suffix.
10+
4110.14.1 - 2024-05-17
512-------------------
613
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def run_tests(self):
4444 py_modules = ['pep8ext_naming' ],
4545 install_requires = ['flake8>=5.0.0' ],
4646 zip_safe = False ,
47- python_requires = '>=3.8 ' ,
47+ python_requires = '>=3.9 ' ,
4848 entry_points = {
4949 'flake8.extension' : [
5050 'N8 = pep8ext_naming:NamingChecker' ,
Original file line number Diff line number Diff line change 1010
1111from flake8 import style_guide
1212
13- __version__ = '0.14.1 '
13+ __version__ = '0.15.0 '
1414
1515CLASS_METHODS = frozenset ((
1616 '__new__' ,
You can’t perform that action at this time.
0 commit comments