diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-16 22:20:49 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-16 22:20:49 -0400 |
commit | b92164bd9ecc08374e1e5e810cf0bc37c8fb9aca (patch) | |
tree | f24aac377f55aef1037c00f1083ffac2899e7280 | |
parent | c457e68319555b7266e5e0802946c5b1b63e4d61 (diff) | |
download | external_python_setuptools-b92164bd9ecc08374e1e5e810cf0bc37c8fb9aca.tar.gz external_python_setuptools-b92164bd9ecc08374e1e5e810cf0bc37c8fb9aca.tar.bz2 external_python_setuptools-b92164bd9ecc08374e1e5e810cf0bc37c8fb9aca.zip |
Bump version: 46.3.1 → 46.4.0v46.4.0
-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 |