diff options
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 9 | ||||
-rw-r--r-- | changelog.d/1753.change.rst | 4 | ||||
-rw-r--r-- | setup.cfg | 2 |
4 files changed, 11 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4ee92185..72d02f2b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 46.3.1 +current_version = 46.4.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index fd3c16ba..ea667028 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +v46.4.0 +------- + +* #1753: ``attr:`` now extracts variables through rudimentary examination of the AST, + thereby supporting modules with third-party imports. If examining the AST + fails to find the variable, ``attr:`` falls back to the old behavior of + importing the module. Works on Python 3 only. + + v46.3.1 ------- diff --git a/changelog.d/1753.change.rst b/changelog.d/1753.change.rst deleted file mode 100644 index 08fa9ea4..00000000 --- a/changelog.d/1753.change.rst +++ /dev/null @@ -1,4 +0,0 @@ -``attr:`` now extracts variables through rudimentary examination of the AST, -thereby supporting modules with third-party imports. If examining the AST -fails to find the variable, ``attr:`` falls back to the old behavior of -importing the module. Works on Python 3 only. @@ -16,7 +16,7 @@ formats = zip [metadata] name = setuptools -version = 46.3.1 +version = 46.4.0 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |