Hi all, we are getting after changing versions fro...
# general
p
Hi all, we are getting after changing versions from
2.15.0
to
2.18.0
Copy code
❯ pants
18:59:46.17 [ERROR] Invalid option 'lockfile' under [mypy] in /Users/faris/Documents/github/x/pants.toml
18:59:46.17 [ERROR] Invalid option 'version' under [mypy] in /Users/faris/Documents/github/x/pants.toml
the docs does not show these as deprecated options, but I also can't find them
1
I want back to 2.15.0 docs and found them there, hmmm
it seems that
install_from_resolve
is the new
lockfile
options 👌
and use this
requirements = ["mypy==1.1.1"]
rather than
version
awesome 🙂
h
Yep, that all underwent major change in 2.18. there were deprecations but you'd only see them if you upgraded one version at a time...
1
p
That makes sense, Thanks Benjy!