File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -357,11 +357,18 @@ MIT
357
357
Change Log
358
358
----------
359
359
360
- FUTURE
361
- ~~~~~~
360
+ 24.8.19
361
+ ~~~~~~~
362
362
363
- * Add B039, ``ContextVar `` with mutable literal or function call as default.
364
- * Add B040: Exception with added note not reraised. (#474)
363
+ * B910: implement to suggest using Counter() instead of defaultdict(int) (#489)
364
+ * B901: Do not trigger with explicit Generator return type (#481)
365
+ * B008: add some comments, rename b008_extend_immutable_calls (#476)
366
+ * B040: exception with note added not reraised or used (#477)
367
+ * B039, Add ``ContextVar `` with mutable literal or function call as default
368
+ * B040: Add Exception with added note not reraised. (#474)
369
+ * Run tests in Python 3.13
370
+ * Type annotated code (#481 + #483)
371
+ * Replace hash with unsafe_hash (#486)
365
372
366
373
24.4.26
367
374
~~~~~~~
Original file line number Diff line number Diff line change 17
17
import attr
18
18
import pycodestyle # type: ignore[import-untyped]
19
19
20
- __version__ = "24.4.26 "
20
+ __version__ = "24.8.19 "
21
21
22
22
LOG = logging .getLogger ("flake8.bugbear" )
23
23
CONTEXTFUL_NODES = (
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ classifiers = [
31
31
" Programming Language :: Python :: 3.10" ,
32
32
" Programming Language :: Python :: 3.11" ,
33
33
" Programming Language :: Python :: 3.12" ,
34
+ " Programming Language :: Python :: 3.13" ,
34
35
" Programming Language :: Python :: 3 :: Only" ,
35
36
" Topic :: Software Development :: Libraries :: Python Modules" ,
36
37
" Topic :: Software Development :: Quality Assurance" ,
You can’t perform that action at this time.
0 commit comments