-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
[change] Move Python dependencies to requirements.txt #52
Labels
bug
Something isn't working
Comments
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
|
4 tasks
Hey @pandafy , can you pls check the PR once and let me know if any changes required, Thanks! |
shwetd19
added a commit
to shwetd19/ansible-wireguard-openwisp
that referenced
this issue
Jan 23, 2025
Added all dependencies, such as Flask, Werkzeug, and uwsgi, into this file to keep things organized.
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: