cold-soccer-63228
05/31/2023, 6:27 PMariadne
third-party library. I have my BUILD
file defined as follows.
python_requirement(name="ariadne", requirements=["ariadne==0.11.0"], resolve="pants-plugins")
python_sources(dependencies=["ariadne"], resolve="pants-plugins")
Then, in my plugin, I have the following at the top.
import ariadne
When running ./pants dependees …
, I’m getting the following error.
ModuleNotFoundError: No module named 'ariadne'
What am I missing here?fast-nail-55400
05/31/2023, 6:57 PM[GLOBAL].plugins
option. https://www.pantsbuild.org/v2.16/docs/plugins-overview#in-repo-pluginscold-soccer-63228
05/31/2023, 6:57 PM