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
When installing office365 package in lambda's `/tmp/ dir:
office365
os.system('/var/lang/bin/pip3.9 install office365 -t /tmp/') import office365 def handler(event, context): print(sys.path) print("hi!") print(office365.__version__)
one of the dependencies threw below error:
awslambdaric 2.0.4 requires simplejson==3.17.2, but you have simplejson 3.18.1 which is incompatible. Module office365 not found
The text was updated successfully, but these errors were encountered:
@alex-pewpew @briensea Can we please upgrade out of this ancient simplejson version? Or at least loosen the pin.
simplejson
Technically, the simplejson==3.17.2 only supports up to Python 3.8 wheels
simplejson==3.17.2
Sorry, something went wrong.
Should be at least minimum simplejson>=3.18.1
simplejson>=3.18.1
3.18.4
Fixed in 2.0.11.
Successfully merging a pull request may close this issue.
When installing
office365
package in lambda's `/tmp/ dir:one of the dependencies threw below error:
The text was updated successfully, but these errors were encountered: