On Sat, Jul 2, 2022 at 8:40 PM sathish subramani <[email protected]> wrote: > > Hi Brian/Team, > > In RHEL 8.6 come with python3.6 as default with Long term support. As > application system we need to stick with long term support package. > > As per ansible-core 2.13 requirement sheet dependencies Python 3.8+ support > required is mentioned. > > our question ansible-core 2.13 will able to compile, build ansible-core rpm > and execute ansible functionality using python3.6 will work? > > https://github.com/ansible/ansible/blob/stable-2.13/requirements.txt
It can be easily built with "pip3.8 install --user ansible-core" Compiling it as an RPM is.... notably harder, because it relies on jinja2 >= 3.0.0, and building up the dependency chain as RPMs is... well, it's painful. I publish RPM building tools over at https://github.com/nkadel/ansiblerepo/, and you're welcome to play with them. The full suite of dependencies being built up for Fedora is.... much, much larger, because someone elected to add "pywinrm", which has a very large dependency chain. > Python3 support document below link it say ansible2.5 onward support python3 > with version of Python 3.5 or greater. > > https://docs.ansible.com/ansible/latest/reference_appendices/python_3_support.html Those directions do not install the most current release of ansible-core, because they use the default python3 and install somewhat older versions. It's confusing. > Thanks and Regards, > S Sathish > > On Saturday, July 2, 2022 at 12:15:26 AM UTC+5:30 Brian Coca wrote: >> >> ansbile-core 2.13 is the latest version as of this post. >> >> >> -- >> ---------- >> Brian Coca >> > -- > You received this message because you are subscribed to the Google Groups > "Ansible Project" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/ansible-project/203ef4e7-d8c4-451e-ba13-7bc6b4baa5d2n%40googlegroups.com. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAOCN9ry8qTP5h%3D4A7_NicioCaF4nCz0x2UYygNVDNyHAVSXQLA%40mail.gmail.com.
