File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
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
+
4
11
0.14.1 - 2024-05-17
5
12
-------------------
6
13
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def run_tests(self):
44
44
py_modules = ['pep8ext_naming' ],
45
45
install_requires = ['flake8>=5.0.0' ],
46
46
zip_safe = False ,
47
- python_requires = '>=3.8 ' ,
47
+ python_requires = '>=3.9 ' ,
48
48
entry_points = {
49
49
'flake8.extension' : [
50
50
'N8 = pep8ext_naming:NamingChecker' ,
Original file line number Diff line number Diff line change 10
10
11
11
from flake8 import style_guide
12
12
13
- __version__ = '0.14.1 '
13
+ __version__ = '0.15.0 '
14
14
15
15
CLASS_METHODS = frozenset ((
16
16
'__new__' ,
You can’t perform that action at this time.
0 commit comments