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
When it comes to python packing and dependency management, the python world is messy and changing: https://drivendata.co/blog/python-packaging-2023, https://chriswarrick.com/blog/2023/01/15/how-to-improve-python-packaging/
It seems the best thing to do is to use pdm (https://pdm-project.org/latest/usage/dependency/) -- which provides a lock mechanism for dependencies and can get rid of virtual environments (by implementing PEP582). Unfortunately the resulting lockfile is not supported by dependabot: dependabot/dependabot-core#3190.
So for now we stick to the goog old pip requirement.txt file and skip packaging at all.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When it comes to python packing and dependency management, the python world is messy and changing: https://drivendata.co/blog/python-packaging-2023, https://chriswarrick.com/blog/2023/01/15/how-to-improve-python-packaging/
It seems the best thing to do is to use pdm (https://pdm-project.org/latest/usage/dependency/) -- which provides a lock mechanism for dependencies and can get rid of virtual environments (by implementing PEP582). Unfortunately the resulting lockfile is not supported by dependabot: dependabot/dependabot-core#3190.
So for now we stick to the goog old pip requirement.txt file and skip packaging at all.
The text was updated successfully, but these errors were encountered: