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 3ebeb57 commit d20ddf8Copy full SHA for d20ddf8
bin/compile
@@ -269,8 +269,13 @@ mtime "pip.uninstall.time" "${start}"
269
# This allows for people to ship a setup.py application to Heroku
270
# (which is rare, but I vouch that it should work!)
271
272
-if [ ! -f requirements.txt ] && [ ! -f Pipfile ]; then
273
- echo "-e ." > requirements.txt
+if [ ! -f requirements.txt ] && [ ! -f Pipfile ] ; then
+ if [ -f pyproject.toml ] ; then
274
+ # Editable installs are not supported for pyproject.toml-style projects.
275
+ echo "." > requirements.txt
276
+ else
277
+ echo "-e ." > requirements.txt
278
+ fi
279
fi
280
281
# Fix egg-links.
0 commit comments