I'm not happy with the code organization in <https...
# development
p
I'm not happy with the code organization in https://github.com/pantsbuild/pants/pull/21062 because I've basically dumped a bunch of rule code into a util_rules file (moving it out of the stevedore framework backend into something loaded by the experimental python backend). Could someone take a look and offer a suggestion on where this code should live?
h
Honestly, that
util_rules
dir seems fine?
👍 1
c
could also move the dep inference to python/dependency_inference (maybe its own file)
p
Hmmm. Putting the dep_inference bits to
python/dependency_inference
might be good. I'll play with that. If that doesn't feel much better, then I'll just leave it under
python/util_rules
. Thanks for the feedback.