Skip to content

Commit 6e71447

Browse files
authored
Merge pull request #537 from ofercaspi/support-poetry-private-repos
Support poetry private repos
2 parents d86b7fb + 14f1951 commit 6e71447

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ custom:
105105
## :sparkles::pencil::sparkles: Poetry support
106106

107107
If you include a `pyproject.toml` and have `poetry` installed instead of a `requirements.txt` this will use
108-
`poetry export --without-hashes -f requirements.txt -o requirements.txt` to generate them. It is fully compatible with all options such as `zip` and
108+
`poetry export --without-hashes -f requirements.txt -o requirements.txt --with-credentials` to generate them. It is fully compatible with all options such as `zip` and
109109
`dockerizePip`. If you don't want this plugin to generate it for you, set the following option:
110110

111111
```yaml

lib/poetry.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ function pyprojectTomlToRequirements() {
2222
'-f',
2323
'requirements.txt',
2424
'-o',
25-
'requirements.txt'
25+
'requirements.txt',
26+
'--with-credentials'
2627
],
2728
{
2829
cwd: this.servicePath

0 commit comments

Comments
 (0)