Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ and requires that poetry is installed with the --preview flag.
TL;DR Install poetry with the `--preview` flag.

If you include a `pyproject.toml` and have `poetry` installed instead of a `requirements.txt` this will use
`poetry export --without-hashes -f requirements.txt` to generate them. It is fully compatible with all options such as `zip` and
`poetry export --without-hashes -f requirements.txt -o requirements.txt` to generate them. It is fully compatible with all options such as `zip` and
`dockerizePip`. If you don't want this plugin to generate it for you, set the following option:
```yaml
custom:
Expand Down
2 changes: 1 addition & 1 deletion lib/poetry.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function pyprojectTomlToRequirements() {

const res = spawnSync(
'poetry',
['export', '--without-hashes', '-f', 'requirements.txt'],
['export', '--without-hashes', '-f', 'requirements.txt', '-o', 'requirements.txt'],
{
cwd: this.servicePath
}
Expand Down