-
-
Notifications
You must be signed in to change notification settings - Fork 112
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
Getting the error in lambads With django 3.2 #285
Comments
It sounds like you're running with Python 3.7. Are you using a non-standard installer or using different Python versions for your installer and actual code? The 4.8.0 release of typing-extensions specifies a lower bound of Python 3.8 for this reason: typing_extensions/pyproject.toml Line 12 in c17c499
|
Its python 3.8 installer. Runtime env is 3.7 |
Yeah, that's not going to work. You should use an installer that matches the interpreter you actually run with. |
You mean installer should also on 3.7. Then this 4.8 version will work. Or i can freeze the requirement. That also works. |
The latest release no longer supports Python 3.7. You'll have to keep using 4.7.1. |
[ERROR] Runtime.UserCodeSyntaxError: Syntax error in module 'pr_dd_to_rds': invalid syntax (typing_extensions.py, line 874)
Traceback (most recent call last):
File "/opt/python/typing_extensions.py" Line 874
def TypedDict(typename, fields=_marker, /, *, total=True, **kwargs):
After 18th release we start facing this issue. As our requirements are not freezed so latest version installed and lambda start falling.
The text was updated successfully, but these errors were encountered: