I’m using pip for deploying my package and I want it to pull my package’s submodules recursively whenever I upgrade my package, does anybody know how can I do so?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Whenever pip updates my repo, it runs setup.py with “develop” as its argument, so I changed my setup.py like this:
it means that before running default procedure of “setup.py develop” run “git submodule update –init –recursive”.