From 7f69629fa787fb5242534111cec2fb4772e3f1b9 Mon Sep 17 00:00:00 2001 From: Arnold Kamanzi Date: Thu, 11 Aug 2022 16:54:21 -0400 Subject: [PATCH] Fix ansible-docs: shipping ansible in wheel format #78485 (#78524) --- docs/docsite/rst/reference_appendices/faq.rst | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docs/docsite/rst/reference_appendices/faq.rst b/docs/docsite/rst/reference_appendices/faq.rst index a969fd4d0cc..2b2ecbb3824 100644 --- a/docs/docsite/rst/reference_appendices/faq.rst +++ b/docs/docsite/rst/reference_appendices/faq.rst @@ -709,15 +709,6 @@ To determine if a keyword requires ``{{ }}`` or even supports templating, use `` this will return documentation on the keyword including a ``template`` field with the values ``explicit`` (requires ``{{ }}``), ``implicit`` (assumes ``{{ }}``, so no needed) or ``static`` (no templating supported, all characters will be interpreted literally) -.. _why_no_wheel: - -Why don't you ship ansible in wheel format (or other packaging format) ? -++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - -In most cases it has to do with maintainability. There are many ways to ship software and we do not have -the resources to release Ansible on every platform. -In some cases there are technical issues. For example, our dependencies are not present on Python Wheels. - .. _ansible_host_delegated: How do I get the original ansible_host when I delegate a task?