We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9750662 commit f7048bdCopy full SHA for f7048bd
lib/poetry.js
@@ -36,7 +36,7 @@ function pyprojectTomlToRequirements() {
36
const editableFlag = new RegExp(/^-e /gm);
37
const sourceRequirements = path.join(this.servicePath, 'requirements.txt');
38
const requirementsContents =
39
- res.stdout.toString() ||
+ res.stdout.toString() || // As of poetry 1.0.0b1, requirements.txt is printed to standard output when the -o option is not specified.
40
fse.readFileSync(sourceRequirements, {
41
encoding: 'utf-8'
42
});
0 commit comments