This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Anthony Sottile
Recipients Anthony Sottile, docs@python, mdk, ned.deily, steve.dower
Date 2018-12-28.21:16:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546031817.46.0.36955512684.issue35605@roundup.psfhosted.org>
In-reply-to
Content
If I add a patch which is essentially:


try:  # sphinx>=1.6
    from sphinx.util.logging import getLogger
except ImportError:  # sphinx<1.6
    from logging import getLogger

will that be fine?

and should I open that against 3.7 to be backported or just against 3.6 (I also ran into the same issue when backporting 3.7.2 for xenial -- but there I adjusted the minimum sphinx version: https://github.com/deadsnakes/python3.7/commit/c27b89bc7032d0b072b46c7425e5b32788f1c0fd )
History
Date User Action Args
2018-12-28 21:16:58Anthony Sottilesetrecipients: + Anthony Sottile, ned.deily, docs@python, steve.dower, mdk
2018-12-28 21:16:57Anthony Sottilesetmessageid: <1546031817.46.0.36955512684.issue35605@roundup.psfhosted.org>
2018-12-28 21:16:57Anthony Sottilelinkissue35605 messages
2018-12-28 21:16:57Anthony Sottilecreate