Skip to content
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 -o requirements.txt --without-hashes --with-credentials --all-extras doesn't export all dependencies #288

Open
fschlz opened this issue Jul 3, 2024 · 2 comments

Comments

@fschlz
Copy link

fschlz commented Jul 3, 2024

Description

poetry export -o requirements.txt --without-hashes --with-credentials --all-extras doesn't export all dependencies.

Workarounds

I have to include all extra dependency groups with --with or use no groups at all.
Unfeasible in CI pipelines for example.

Poetry Installation Method

install.python-poetry.org

Operating System

macOS Sonoma

Poetry Version

1.8.2

Poetry Configuration

cache-dir = "/Users/francisco/Library/Caches/pypoetry"
experimental.system-git-client = false
installer.max-workers = null
installer.modern-installation = true
installer.no-binary = null
installer.parallel = true
keyring.enabled = true
repositories.custom.url = "{{URL}}"
solver.lazy-wheel = true
virtualenvs.create = true
virtualenvs.in-project = true
virtualenvs.options.always-copy = false
virtualenvs.options.no-pip = false
virtualenvs.options.no-setuptools = false
virtualenvs.options.system-site-packages = false
virtualenvs.path = "{cache-dir}/virtualenvs"  # /Users/francisco/Library/Caches/pypoetry/virtualenvs
virtualenvs.prefer-active-python = false
virtualenvs.prompt = "{project_name}-py{python_version}"
warnings.export = false

Python Sysconfig

No response

Example pyproject.toml

No response

Poetry Runtime Logs

the command isn't failing, it's just not behaving as expected
@radoering radoering transferred this issue from python-poetry/poetry Jul 3, 2024
@radoering
Copy link
Member

So you are interested in #105 (--all)?

@Nikkulin3
Copy link

same issue here. poetry install respects all groups, but poetry export does not. I expected the behavior to be the same.

Workaround with grep:

all_groups=$(grep tool.poetry.group. pyproject.toml | echo "main `cut -d. -f4`" | xargs | sed -e 's/ /,/g')
poetry export --with="$all_groups"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants