Skip to content

Commit a6be839

Browse files
authored
Prepare the 0.15.0 release (#244)
1 parent d4e33d0 commit a6be839

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changes
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+
411
0.14.1 - 2024-05-17
512
-------------------
613

setup.py

+1-1
Original file line numberDiff line numberDiff 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',

src/pep8ext_naming.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from flake8 import style_guide
1212

13-
__version__ = '0.14.1'
13+
__version__ = '0.15.0'
1414

1515
CLASS_METHODS = frozenset((
1616
'__new__',

0 commit comments

Comments
 (0)