adventurous-businessperson-79294
02/02/2024, 11:15 PMCould not find script 'mypy' in any distribution within PEX! error. I tried adding requirements =["//:thirdparty#mypy"] to the pants.toml which then caused an error with no detail `Engine traceback: in check goal AssertionError:` . Any help would be appreciated! Relevant files in 🧵adventurous-businessperson-79294
02/02/2024, 11:15 PM-- BUILD
poetry_requirements(
name="thirdparty",
module_mapping={...},
)
-- pants.toml
[GLOBAL]
pants_version = "2.18.1"
backend_packages = [
"pants.backend.python",
"pants.backend.experimental.python.lint.ruff",
"pants.backend.python.typecheck.mypy"
]
[python]
interpreter_constraints = [">=3.10.*"]
run_against_entire_lockfile = true
enable_resolves = true
default_resolve = "common"
[python.resolves]
common = "poetry.pants.lock"
[mypy]
install_from_resolve = 'common'
config = 'pyproject.toml'
[python-repos]
indexes.add = [//private_repo]broad-processor-92400
02/03/2024, 11:54 AM--print-stacktrace and post the full error output?