From: Eduardo Habkost <ehabkost@redhat.com> To: qemu-devel@nongnu.org Cc: "Thomas Huth" <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@redhat.com>, "Peter Maydell" <peter.maydell@linaro.org>, "Daniel P. Berrange" <berrange@redhat.com>, "Cleber Rosa" <crosa@redhat.com> Subject: [Qemu-devel] [PATCH] Deprecate Python 2 support Date: Fri, 3 May 2019 16:37:21 -0300 [thread overview] Message-ID: <20190503193721.18459-1-ehabkost@redhat.com> (raw) Python 2 will reach end of life in January 1 2020. Declare it as deprecated. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> --- configure | 8 ++++++++ qemu-deprecated.texi | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/configure b/configure index 5b183c2e39..50385061ed 100755 --- a/configure +++ b/configure @@ -6461,6 +6461,14 @@ if test "$supported_os" = "no"; then echo "us upstream at qemu-devel@nongnu.org." fi +# Note that if the Python conditional here evaluates True we will exit +# with status 1 which is a shell 'false' value. +if ! $python -c 'import sys; sys.exit(sys.version_info < (3,0))'; then + echo + echo "WARNING: Python 2 support is deprecated" >&2 + echo "WARNING: Python 3 will be required for building future versions of QEMU" >&2 +fi + config_host_mak="config-host.mak" echo "# Automatically generated by configure - do not modify" >config-all-disas.mak diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi index 842e71b11d..2f2d9a3e95 100644 --- a/qemu-deprecated.texi +++ b/qemu-deprecated.texi @@ -206,3 +206,11 @@ Note that if you are exposing the export via /dev/nbd0, it is easier to just export the entire image and then mount only /dev/nbd0p1 than it is to reinvoke @command{qemu-nbd -c /dev/nbd0} limited to just a subset of the image. + +@section Build system + +@subsection Python 2 support (since 4.1.0) + +In the future, QEMU will require Python 3 to be available at +build time. Support for Python 2 in scripts shipped with QEMU +is deprecated. -- 2.18.0.rc1.1.g3f1ff2140
WARNING: multiple messages have this Message-ID (diff)
From: Eduardo Habkost <ehabkost@redhat.com> To: qemu-devel@nongnu.org Cc: "Peter Maydell" <peter.maydell@linaro.org>, "Thomas Huth" <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@redhat.com>, "Cleber Rosa" <crosa@redhat.com> Subject: [Qemu-devel] [PATCH] Deprecate Python 2 support Date: Fri, 3 May 2019 16:37:21 -0300 [thread overview] Message-ID: <20190503193721.18459-1-ehabkost@redhat.com> (raw) Message-ID: <20190503193721.0CWxLJxZNO0G8V4B7CfHy3IoXgDC-V5x38OU6FTTAOE@z> (raw) Python 2 will reach end of life in January 1 2020. Declare it as deprecated. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> --- configure | 8 ++++++++ qemu-deprecated.texi | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/configure b/configure index 5b183c2e39..50385061ed 100755 --- a/configure +++ b/configure @@ -6461,6 +6461,14 @@ if test "$supported_os" = "no"; then echo "us upstream at qemu-devel@nongnu.org." fi +# Note that if the Python conditional here evaluates True we will exit +# with status 1 which is a shell 'false' value. +if ! $python -c 'import sys; sys.exit(sys.version_info < (3,0))'; then + echo + echo "WARNING: Python 2 support is deprecated" >&2 + echo "WARNING: Python 3 will be required for building future versions of QEMU" >&2 +fi + config_host_mak="config-host.mak" echo "# Automatically generated by configure - do not modify" >config-all-disas.mak diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi index 842e71b11d..2f2d9a3e95 100644 --- a/qemu-deprecated.texi +++ b/qemu-deprecated.texi @@ -206,3 +206,11 @@ Note that if you are exposing the export via /dev/nbd0, it is easier to just export the entire image and then mount only /dev/nbd0p1 than it is to reinvoke @command{qemu-nbd -c /dev/nbd0} limited to just a subset of the image. + +@section Build system + +@subsection Python 2 support (since 4.1.0) + +In the future, QEMU will require Python 3 to be available at +build time. Support for Python 2 in scripts shipped with QEMU +is deprecated. -- 2.18.0.rc1.1.g3f1ff2140
next reply other threads:[~2019-05-03 19:37 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-05-03 19:37 Eduardo Habkost [this message] 2019-05-03 19:37 ` [Qemu-devel] [PATCH] Deprecate Python 2 support Eduardo Habkost 2019-05-04 6:27 ` Thomas Huth 2019-05-04 6:27 ` Thomas Huth 2019-05-06 14:12 ` Markus Armbruster 2019-05-07 0:53 ` Eduardo Habkost 2019-05-07 9:44 ` Daniel P. Berrangé 2019-05-07 10:38 ` Kevin Wolf 2019-05-07 10:47 ` Daniel P. Berrangé 2019-05-08 12:50 ` Markus Armbruster 2019-05-08 17:57 ` Eduardo Habkost 2019-06-06 22:28 ` Philippe Mathieu-Daudé
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20190503193721.18459-1-ehabkost@redhat.com \ --to=ehabkost@redhat.com \ --cc=berrange@redhat.com \ --cc=crosa@redhat.com \ --cc=peter.maydell@linaro.org \ --cc=philmd@redhat.com \ --cc=qemu-devel@nongnu.org \ --cc=thuth@redhat.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).