Open
Conversation
``` The 'community.general.yaml' callback plugin has been removed. The plugin has been superseded by the option `result_format=yaml` in callback plugin ansible.builtin.default from ansible-core 2.13 onwards. This feature was removed from collection 'community.general' version 12.0.0. ```
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates SEEK’s tooling to target Python 3.13 consistently across local update scripts, Docker builds, CI, and the Ansible deploy playbook.
Changes:
- Replace hard-coded
python3.9usage with a.python-version-driven interpreter selection. - Update Docker and Ansible provisioning steps to use Python 3.13 (and
ensurepipfor pip bootstrapping). - Switch GitHub Actions CI to
actions/setup-pythonwith pip caching and dependency install.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
script/update-from-git.sh |
Uses .python-version to choose the Python interpreter for pip install. |
script/mini-update-from-git.sh |
Same .python-version-based Python selection for requirements install. |
script/ansible/ansible.cfg |
Attempts to change Ansible output formatting configuration. |
script/ansible/Deploy-SEEK.yml |
Provisions Python 3.13 and installs SEEK Python requirements during deploy. |
lib/seek/util.rb |
Centralizes Python interpreter selection via .python-version for runtime tooling. |
Dockerfile |
Aligns container build to Python 3.13 and uses ensurepip before installing requirements. |
.python-version |
Adds the central Python version declaration (3.13). |
.github/workflows/tests.yml |
Uses actions/setup-python and pip cache/install behavior in CI. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
`mysql_user` module does seem to require it (according to docs), even though the tests passed without it... Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
setup-pythonin actions.