Update Ansible dependencies: Python 3.14.2→3.14.3, Ansible 13.3.0→13.5.0 - #55
Conversation
Resolves the dependency update issue by bumping: - BUILD_PYTHON_VERSION from 3.14.2 to 3.14.3 - Ansible version from 13.3.0 to 13.5.0 Updated in ansible/ansible_installer.sh Agent-Logs-Url: https://github.com/Stensel8/Scripts/sessions/148b0229-bf31-45ae-956e-2be55a3d7d48 Co-authored-by: Stensel8 <102481635+Stensel8@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Updates pinned dependency versions in the Ansible installer to track the latest Python 3.14 patch release and the latest Ansible community package release.
Changes:
- Bump
BUILD_PYTHON_VERSIONfrom 3.14.2 to 3.14.3. - Bump Ansible from 13.3.0 to 13.5.0 in the header comment, install log message, and
pip installpin.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # Ansible Installer Script | ||
| # | ||
| # Installs Ansible 13.3.0 (ansible-core 2.20.2) in a Python 3.14 virtual environment. | ||
| # Installs Ansible 13.5.0 (ansible-core 2.20.2) in a Python 3.14 virtual environment. |
There was a problem hiding this comment.
The header comment hardcodes ansible-core 2.20.2, but ansible==13.5.0 depends on ansible-core~=2.20.4 (>=2.20.4,<2.21). Please update this to the correct bundled core version, or reword to avoid pinning an ansible-core micro version that can vary with dependency resolution.
| # Installs Ansible 13.5.0 (ansible-core 2.20.2) in a Python 3.14 virtual environment. | |
| # Installs Ansible 13.5.0 (with its bundled ansible-core dependency) in a Python 3.14 virtual environment. |
|
|
||
| # === Install Ansible === | ||
| info "Installing Ansible 13.3.0 (community package, bundles ansible-core 2.20.2)..." | ||
| info "Installing Ansible 13.5.0 (community package, bundles ansible-core 2.20.2)..." |
There was a problem hiding this comment.
This log message says Ansible 13.5.0 "bundles ansible-core 2.20.2", but ansible==13.5.0 installs ansible-core~=2.20.4 (and will typically resolve to the latest 2.20.x). Please update the ansible-core version text or remove the specific micro version to keep logs accurate.
|
@copilot, implement suggestions/comments above, then merge and close this PR. |
… deps Agent-Logs-Url: https://github.com/Stensel8/Scripts/sessions/7bf55681-7121-461e-839f-eec77c771ec2 Co-authored-by: Stensel8 <102481635+Stensel8@users.noreply.github.com>
Done — both ansible-core version references have been corrected in commit d4d2a50:
|
⚡ Quickly spin up Copilot coding agent tasks from anywhere on your macOS or Windows machine with Raycast.