hi, i think this was in docs, but I can’t seem to ...
# general
w
hi, i think this was in docs, but I can’t seem to find it now. Does the pants lockfile mechanism validate the transitive dependencies of third party libraries? E.g. if my
3rdparty/requirements.txt
contain
req1
that say depends on
PyJWT>1
and
req2
depends on
PyJWT<1
will pants error out during the lock generation?
e
Yes. it will error if the resolve is impossible. Your example is one way to be impossible.
👍 1