<#19183 python_requirement not working in a plugin...
# github-notifications
c
#19183 python_requirement not working in a plugin Issue created by idan-at Describe the bug I am writing a custom pants plugin, and I fail to import 3rd party dependencies. Here is my setup:
Copy code
python_sources(
  name="sources",
  sources=["**/*.py"],
  dependencies=[":requirements", ":pants_requirements"]
)

python_requirement(
  name="requirements",
  requirements=[
    "GitPython==3.1.12",
    "semver==2.13.0",
  ]
)

pants_requirements(
  name="pants_requirements",
)
Pants version 2.15.0 OS MacOS Additional info I haven't found any pants plugin that consumes 3rd party dependencies. Is that supported? Thanks! pantsbuild/pants