Issue
After upgrading poetry from 1.0.0 to 1.1.0, poetry export -frequirements.txt results in the following exception when using a poetry.lock file created by an earlier version: https://gist.github.com/iksteen/bd4fd24e2b79e0f0644461fe501297d4
Running poetry lock using poetry 1.1.0 fixes the problem.
While not a huge issue, this currently frustrates our CI strategy as we have an assumption there that installing poetry>=1.0,<2.0 would be sufficient to guard against incompatibilities of poetry updates. Currently we have quite a few PRs on several projects that suddenly won't build in the CI anymore.
While this seems similar to #3018, the conditions under which this occurs differ significantly (#3018 is also triggered after running poetry lock).
-vvvoption).Issue
After upgrading poetry from 1.0.0 to 1.1.0,
poetry export -frequirements.txtresults in the following exception when using apoetry.lockfile created by an earlier version: https://gist.github.com/iksteen/bd4fd24e2b79e0f0644461fe501297d4Running
poetry lockusing poetry 1.1.0 fixes the problem.While not a huge issue, this currently frustrates our CI strategy as we have an assumption there that installing
poetry>=1.0,<2.0would be sufficient to guard against incompatibilities of poetry updates. Currently we have quite a few PRs on several projects that suddenly won't build in the CI anymore.While this seems similar to #3018, the conditions under which this occurs differ significantly (#3018 is also triggered after running
poetry lock).