Closed covuworie closed 2 years ago
I've also been seeing this issue on all my repos with 1.2.0a1. It was working fine before (with 1.2.0a1) but this week it suddenly broke in all the repos. I'm installing poetry using pip
and suspect it's an issue with one of the dependencies.
I will try to comb through my CI history and track down some working and non-working sets of dependencies to see if I can narrow it down. Downgrading to 1.1.7 made the problem go away. I haven't tried 1.2.0a2 which I see was released yesterday.
This is what my CI history looks like. It started failing on 7/30.
In both cases this is what's being run:
pip install poetry==1.2.0a1
poetry --version
poetry install --no-ansi --no-interaction
poetry show
This is the last passing job on 7/29: https://app.circleci.com/pipelines/github/lace/vg/933/workflows/ef06715a-b4a9-46ba-8837-0753731d66eb/jobs/2834
And the first failing job on 7/30: https://app.circleci.com/pipelines/github/lace/vg/934/workflows/914051ad-23e2-43ae-af6b-d366bc49b4e1/jobs/2835
Perhaps this is the issue:
Last passing build:
Collecting poetry-core<1.2.0,>=1.1.0a5
Downloading poetry_core-1.1.0a5-py3-none-any.whl (420 kB)
First failing build:
Collecting poetry-core<1.2.0,>=1.1.0a5
Downloading poetry_core-1.1.0a6-py3-none-any.whl (421 kB)
@covuworie @paulmelnikow Got the same problem on v1.2.0a1, tried v1.2.0a2 and it fixed the problem.
Thanks @KCC13 and @paulmelnikow. I tested today with v1.2.0a2 and it fixed the problem. The maintainers can close this issue when they are ready.
indeed this code doesn't exist any more, should be safe to close
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
-vvv
option).Issue
I am seeing the following issue when a new project is created with the following minimal
pyproject.toml
file:Running
poetry install
orpoetry lock
gives the following error:Note there are no dependencies in the
pyproject.toml
file. In addition to standard install of python, the only other package installed ispoetry-dotenv-plugin
and it's dependencies. Here is apip list
if needed:This issue may be related to issue 4085.