We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move Python dependencies from pip.yml to a requirements.txt file.
Ensure that dependabot can upgrade the dependencies in requirements.txt.
The text was updated successfully, but these errors were encountered:
We can use the following tasks to implement this
- name: Read local requirements.txt and install packages local_action: command cat /path/to/requirements.txt register: requirements - name: Install Python modules from requirements.txt pip: name: "{{ requirements.stdout_lines }}" state: present become: yes
Sorry, something went wrong.
No branches or pull requests
Move Python dependencies from pip.yml to a requirements.txt file.
Ensure that dependabot can upgrade the dependencies in requirements.txt.
The text was updated successfully, but these errors were encountered: