Closed briggySmalls closed 3 years ago
Seems to be related to a bug here: https://github.com/python-poetry/poetry/issues/655
i.e. this was an issue on my own system because I had multiple python versions managed by pyenv, and other filth. Now I've edited the shebang in ~/.poetry/bin/poetry to drop the python3
in favour of python
it's all working neatly again.
poetry add
can fail because python version not restricted tightly enough.python = "*"
is not useful. Better to do something likepython = "^3.5"
?