Hi, is there a way to specify 3rdparty libs, some ...
# general
c
Hi, is there a way to specify 3rdparty libs, some python2 and some python3? also, when pants repl.py 3rdparty/python:somelib -> It opens python2 shell, how can I make it open a python3 shell?
w
also, when pants repl.py 3rdparty/python:somelib -> It opens python2 shell, how can I make it open a python3 shell?
if you want python3 to be the default, you'd want to set
[python-setup] compatibility
, i think.
if it's just one target, you'd want to set
compatibility
on that target
...and if neither of those work, then please open a bug
c
I can't specify compatibility for python_requirements,
and I tried to use [python-setup] interpreter_constraints=["CPython>=3.5"]
any idea?:)