diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-06-26 09:56:19 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-08-05 21:48:42 +0200 |
commit | da4471aa4c907a6ef364f0385ed69496a154efa5 (patch) | |
tree | c7a9180922fcacdbe5f98edb452d899a64ea9e03 /.pre-commit-config.yaml | |
parent | dde5508ea6dba400c48db5bfafee7747bb59ae34 (diff) | |
download | astroid-git-da4471aa4c907a6ef364f0385ed69496a154efa5.tar.gz |
Create 'nodes' package, deprecate 'node_classes' and 'scoped_nodes'
Add deprecation warning and retro-compatibility for old API in
node_classes and scoped_nodes.
To be removed in 3.0.0.
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 340c40ab..934cb6d4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: rev: v1.4 hooks: - id: autoflake - exclude: tests/testdata|astroid/__init__.py + exclude: tests/testdata|astroid/__init__.py|astroid/scoped_nodes.py|astroid/node_classes.py args: - --in-place - --remove-all-unused-imports |