Closed ZBQtesla closed 2 years ago
thanks for the bug report! i'll try to get this sorted as soon as possible. awesome that you want to contribute!
@ZBQtesla I pushed a fix for this to luke/poetry-fix. If you have time could you try cloning that branch and let me know if poetry install
work for you?
@lukesmurray It worked for me!
......
I also tested with poetry run mdankideck testData/input testData/output --prefix "devtest::" --sync
and it worked too.
Thank you so much!
sweet @ZBQtesla ! thanks for your help and looking forward to any contributions. Feel free to open an issue to discuss any potential features or changes you have in mind.
Hello @lukesmurray, thank you for developing and maintaining this nice tool! I have used it for a few months, and it just worked very fine.
I want to contribute to this project. But when I installed the dependencies, I faced a problem:
Problem description
I installed the latest nightly version (1.2.0b1) of poetry followed the instructions of poetry's official document (i.e.
curl -sSL https://install.python-poetry.org | python3 - --preview
).Then I
cd
into this project's root directory, and runpoetry install
. But the installation process failed with this error messages (the whole output is too long, so I omitted some normal output indicated with ......):I even did a couple of other attempts:
But they all failed with similar error about "pystache" package
And with poetry nightly version, the output message suggested that "poetry.lock is not consistent with pyproject.toml.":
so then I tried to update the poetry.lock file with
poetry update --lock
. After that, I ranpoetry install
, now it successed!So, can you please update the
poetry.lock
file or may I open a PR to update this file if this problem was really caused by the outdated lock file? And maybe it was caused by some problems with my configurations, if this is the case, please let me know, thank you very much!How to reproduce the issue
poetry env remove ENV_NAME
poetry install
Possible solution
poetry update --lock
as metioned in poetry official document: here and hereMy environment information