Hi Julien,
since you are writing a library, you should add version hints on your requirements.txt. You can use pip freeze for that.
This way, you can utilise tools to check for breaking changes caused by your dependencies.
Plus, it makes debugging easier, since you can more or less be sure to run the same version than the person opening an issue.
Hi Julien,
since you are writing a library, you should add version hints on your requirements.txt. You can use
pip freezefor that.This way, you can utilise tools to check for breaking changes caused by your dependencies.
Plus, it makes debugging easier, since you can more or less be sure to run the same version than the person opening an issue.