Hey Pants, team I'm trying to add a subproject wit...
# general
r
Hey Pants, team I'm trying to add a subproject with different interpreter constraints than the global constraint. I added this in my projects BUILD file
Copy code
__defaults__(
    all=dict(
        resolve="my-project",
        interpreter_constraints=["==3.9.5"],
    ),
    extend=True,
)
Why I run
generate-lockfiles
for this project, it's still using 3.10.5
Copy code
//   "valid_for_interpreter_constraints": [
//     "CPython==3.10.5"
//   ],
Any way to get around
1
this seemed to work 👍