-
-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
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
Running deploy_tools.py using pip on machines that use pip 2 by default causes invalid lambda function #188
Comments
this also happens on linux with python3 and pip3. even modifying the deploy_tools.sh with pip3 did not help. we would have to use the venv to get around this bug. |
Hi everyone, I was just looking around to see if there would be anything I could help with. This one issue caught my attention. The issue at hand has very much to do with the The solution is to fix the
Adding Please note that the Also, using a virtual environment may not necessarily solve the issue since In any case, I am happy to fork this repository, add the changes and submit a pull request. But I am wondering if @jmartini or @kami619 would want to take it from here? Thanks, Abdou |
@AbdouSeck sounds like a good solution to me. Go ahead and try it out and open a pull request! |
@jmartini @kami619 The pull request #211 is up for review. One of the unit tests is failing due to a Thanks, Abdou |
When you install python3 via HomeBrew, you get a new executable
python3
and a new pip,pip3
. Our deploy tools call pip directly so it uses the old pip v2. This creates a lambda function with invalid python 2 versions of some of our dependencies.The text was updated successfully, but these errors were encountered: