`ast.NameCostant` Deprecation in Python 3.14
Closed this issue · 0 comments
sco1 commented
Starting with py3.13 we're getting the following warning emitted:
DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead
Which is used here:
flake8-annotations/flake8_annotations/ast_walker.py
Lines 403 to 409 in 50ad178
Judging from the note from past me I think this can already be dropped since py3.7 support has been removed.