<Comment on #18381 Python generate-lockfiles not c...
# github-notifications
q
Comment on #18381 Python generate-lockfiles not completing Discussion answered by benjyw Hi! One thing that stands out to me is the interpreter constraints.
interpreter_constraints = [">=3.10.*"]
is open-ended, which means Pants is trying to generate a lockfile compatible with 3.10, 3.11 and the 3.12 alphas. I recommend locking down to
==3.10.*
and seeing if that helps. pantsbuild/pants