setup.py Renovation is now in beta.
This setup.py contains references to requirements/*.pip files in the same repo.
When using non-gitFs, this results in a hard fail of parsing setup.py. Using gitFs=https, it's a soft fail: no dependencies detected.
If I instead configure like so:
"pip_requirements": {
"fileMatch": ["requirements/*"]
},
Then these .pip files are detected as pip_requirements files and an upgrade is found.
Questions for @hutson:
setup.py to include external requirements like this?requirements.txt files?setup.py files and not have them in pip requirements format?I believe the configuration suggestion is good enough for our use case.
For now, we will support just versions contained within the setup.py. If someone has a real use case you think deserves support and you find this issue, please explain more about it below.
Most helpful comment
For now, we will support just versions contained within the
setup.py. If someone has a real use case you think deserves support and you find this issue, please explain more about it below.