dry-zebra-75841
03/31/2025, 5:55 AMpython_requirement(
name="django-filter",
resolve="api",
requirements=["django-filter==23.2"],
)
pex_binary(
name="manage",
entry_point="src/manage.py",
layout="packed",
include_requirements=True,
include_tools=True,
dependencies=[
"api:django-filter"
],
)
But I also use a requirements.txt to populate the resolve that this uses, so I dont want to specify a dependency in two places. Is there a way that I can tell the pex_binary to have a hard dependency on a package in a resolve?