-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
poetry export --with dev fails with: Dependency walk failed #173
Comments
Note that I do not have the |
I'm unable to reproduce this in a container; can you please try the modifying the following reproduction attempt to reproduce? $ docker run --rm -it python:3.8 bash
# pip install poetry==1.3.1
# poetry new reproduction && cd reproduction
# poetry add --group dev jsonpickle==1.4.1
# poetry export --with dev
[success] |
I successfully reproduced the error with those steps:
|
Add a dependency `python = "^3.10" (or whatever versions you actually want to support) |
Thanks @dimbleby I was able to solve my issue this way indeed: [tool.poetry]
name = 'Thing'
version = '1.2.3'
description = 'Dummy'
authors = ['Some One']
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
jsonpickle = '1.4.1' Maybe |
-vvv
option) and have included the output below.Issue
When running
poetry -vvv export --with dev
with the above minimalpyproject.toml
, I get the following error:The text was updated successfully, but these errors were encountered: