silly-queen-7197
03/22/2023, 7:47 PM--debug-adapter
I get
pex.environment.ResolveError: A distribution for scipy could not be resolved for /usr/bin/python3.7.
Found 1 distribution for scipy that do not apply:
1.) The wheel tags for scipy 1.9.3 are cp310-cp310-manylinux_2_17_x86_64, cp310-cp310-manylinux2014_x86_64 which do not match the supported tags of /usr/bin/python3.7:
cp37-cp37m-manylinux_2_28_x86_64
... 484 more ...
My code uses python3.10 and I have that set in my pants.toml as
[python]
interpreter_constraints = ["CPython==3.10.*"]
What do I need to do to get the tool to also use a more recent version of python?bitter-ability-32190
03/22/2023, 7:50 PMgenerate-lockfiles --resolve=debugpy
debugpy
I suppose doesnt support Py3.10silly-queen-7197
03/22/2023, 7:58 PMinterpreter_constraints
in the docs you linked which ended up resolving the problem