summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorJeremy Stanley <fungi@yuggoth.org>2020-09-19 14:04:54 +0000
committerJeremy Stanley <fungi@yuggoth.org>2020-09-19 14:07:01 +0000
commit242f7bd1b68428fc20a9d7f219f70a21372dd5c9 (patch)
tree4e2e277335ca48f9b4213f7db3b208e10721a0fa /releasenotes
parent16f19608c446db67e2ad0950a3209078ec6be18b (diff)
downloadpbr-242f7bd1b68428fc20a9d7f219f70a21372dd5c9.tar.gz
Remove use_2to3 backward compat for Setuptools
Odds are this was never used by any PBR-based projects, but was included from the beginning to support a feature of Setuptools for a utility which has been long since discouraged. As of Setuptools 46.2.0 and Python 3.9 it's generating deprecation warnings, and is slated for removal from the Python 3.10 standard library. https://bugs.python.org/issue40360 https://github.com/pypa/setuptools/issues/2086 Change-Id: I6972984f29413d2534d802b142fa9323a7e4a4a3
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/use_2to3-removal-ac48bf9fbfa049b1.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/releasenotes/notes/use_2to3-removal-ac48bf9fbfa049b1.yaml b/releasenotes/notes/use_2to3-removal-ac48bf9fbfa049b1.yaml
new file mode 100644
index 0000000..e0e34ca
--- /dev/null
+++ b/releasenotes/notes/use_2to3-removal-ac48bf9fbfa049b1.yaml
@@ -0,0 +1,9 @@
+---
+other:
+ - |
+ The 2to3 conversion utility has been long discouraged in favor of writing
+ multi-version-capable scripts. As of Setuptools 46.2.0 it's deprecated and
+ slated for removal from the Python 3.10 standard library. Projects which
+ still need it are encouraged to perform conversion prior to packaging. See
+ https://bugs.python.org/issue40360 and
+ https://github.com/pypa/setuptools/issues/2086 for more details.