We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631a406 commit 876cccdCopy full SHA for 876cccd
bin/compile
@@ -266,8 +266,13 @@ mtime "pip.uninstall.time" "${start}"
266
# This allows for people to ship a setup.py application to Heroku
267
# (which is rare, but I vouch that it should work!)
268
269
-if [ ! -f requirements.txt ] && [ ! -f Pipfile ]; then
270
- echo "-e ." > requirements.txt
+if [ ! -f requirements.txt ] && [ ! -f Pipfile ] ; then
+ if [ -f pyproject.toml ] ; then
271
+ # Editable installs are not supported for pyproject.toml-style projects.
272
+ echo "." > requirements.txt
273
+ else
274
+ echo "-e ." > requirements.txt
275
+ fi
276
fi
277
278
# Fix egg-links.
0 commit comments