Open ashleysommer opened 3 months ago
Note, I found this thread on the poetry issue tracker that describes the issue with content-hash, describing why it happens, and potential work-arounds. https://github.com/python-poetry/poetry/issues/496
What benefits do we currently gain from having the lockfile, besides ensuring a successful poetry install after cloning the repo?
Option b) does sound appealing due to less maintenance overhead.
For removing lockfile Even with the application use case of RDFLib, as long as the dependency version constraints are specified in pyproject.toml, they should be supported and guaranteed to work. If there are any runtime issues, then we should update the dependency version constraints or have code paths that handle the dependency breaking changes in the application itself.
Any other considerations for option b)?
Keep in 7.x, remove in 8.x after tidy up of pyproject.toml min versions
We've been seeing increasingly often situations where CI Jobs for PRs are failing because the
poetry.lock
file is out of sync with thepyproject.toml
file, or where there is a hash conflict in thepoetry.lock
file. These are usually caused by dependabot updating only thepyproject.toml
and not thepoetry.lock
file (though it is supposed to do both), or dependabot generating an invalidpoetry.lock
file, that happens sometimes.There are lots of other ways it can get out of sync, including:
poetry update
to bump the lockfile before creating their PRmain
into an old PR before merging the PRDocumentation about this on from Poetry:
And also from the Poetry docs:
Again this comes down to the old question, is RDFLib an application or a library? If it is an application, we want everyone who contributes to RDFlib to be using exactly the same dependency versions, and producing exactly the same builds, and we need to build RDFLib in a reproducible way.
If RDFlib is a library, then we can simply include a compatibility-range of dependency versions in the pyproject.toml file, and it is up to the end-user's package management tool to install the right versions that work with the final application.
Personally I only ever use RDFLib as a library. All of my applications, even small scripts, have their own dependency list and start with
import rdflib
. To me that makes RDFLib a library. But I know there are others who use RDFLib only for the built-in cli tools. So to them, RDFLib is an application.See this Stackoverflow Answer for a well thought out response to this same issue: https://stackoverflow.com/a/61076546
And also this comment from the stackoverflow answer:
Its now 2024 and it seems people (inlcuding us) are facing the same issue.
This is an argument from that thread in favor of keeping the lockfile:
So we need to either a) find a way to always keep everyone using the same lockfile, keep the lockfile up to date in
main
for every PR including dependabot PRs, and probably even ensure all contributors and all CI environments are using the same version of poetry. or b) remove the lockfile from the repo.