We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I'm getting the following error when deploying an app with poetry that has an editable dependency on another local package
ERROR: Complete output from command /var/lang/bin/python3.6 -c 'import setuptools, tokenize;__file__='"'"'/app/tintlib/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps --home=/tmp/pip-target-dvzgxbfh: ERROR: usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: -c --help [cmd1 cmd2 ...] or: -c --help-commands or: -c cmd --help error: option --home not recognized
My current workaround is to set usePoetry: false in serverless.yml and do the following:
usePoetry: false
serverless.yml
poetry export --without-hashes -f requirements.txt sed 's/-e //g' requirements.txt > requirements2.txt mv requirements2.txt requirements.txt sls deploy
Thanks!
The text was updated successfully, but these errors were encountered:
Likely will be fixed by #362 #390
Sorry, something went wrong.
#390 is merged; happy to reopen if the bug is persisting.
No branches or pull requests
Hello,
I'm getting the following error when deploying an app with poetry that has an editable dependency on another local package
My current workaround is to set
usePoetry: false
inserverless.yml
and do the following:Thanks!
The text was updated successfully, but these errors were encountered: