quiet-dentist-42775
11/30/2023, 10:01 AM1. dependencies = [
":auth_requirements",
2.dependencies = [
":platform_requirements",
2. and the 2nd error I dont get i why I am getting that but when I mention any any single module('fastapi', 'flask'...) I dont get it.
like by creating a single python_requirement:
python_requirement(
name = "requirements",
requirements = [
"python-dotenv",
"fastapi",
"uvicorn",
"pydantic",
],
)
and then using this everywhere solves my both problems ::
like:
python_sources(
name = "auth_main",
dependencies = [
":requirements",
python_sources(
name = "platform_main",
dependencies = [
"apps/auth:requirements",
but I want build file to only take those python_modules which are mentioned in that same BUILD file. how to do that? can anyone help me out here...happy-kitchen-89482
11/30/2023, 8:29 PMquiet-dentist-42775
12/01/2023, 7:32 AMquiet-dentist-42775
12/01/2023, 12:20 PMstocky-salesmen-68511
12/04/2023, 5:41 AMhappy-kitchen-89482
12/04/2023, 3:24 PMstocky-salesmen-68511
12/04/2023, 3:24 PM