-
Notifications
You must be signed in to change notification settings - Fork 416
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
Maintenance: Support for Python 3.11 #2732
Comments
Initial findings: 1 - We need to remove • Installing python-snappy (0.6.1): Failed
ChefBuildError
Backend subprocess exited when trying to invoke build_wheel
/tmp/tmpuenu801o/.venv/lib/python3.11/site-packages/setuptools/_distutils/dist.py:265: UserWarning: Unknown distribution option: 'cffi_modules'
warnings.warn(msg)
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-x86_64-cpython-311
creating build/lib.linux-x86_64-cpython-311/snappy
copying src/snappy/snappy_formats.py -> build/lib.linux-x86_64-cpython-311/snappy
2 - I got this error on the LRU cache test and I couldn't understand why we have this test. Do you have any historical data to help us @heitorlessa? Looks like we don't need this test. def test_lru_pop_failing():
cache = LRUDict()
key = "test"
cache[key] = "value"
try:
cache.pop(key, None)
> pytest.fail("GitHub #300: LRUDict pop bug has been fixed :)")
E Failed: GitHub #300: LRUDict pop bug has been fixed :)
tests/unit/test_lru_cache.py:67: Failed
================================================================================================================================================ short test summary info ================================================================================================================================================
FAILED tests/unit/test_lru_cache.py::test_lru_pop_failing - Failed: GitHub #300: LRUDict pop bug has been fixed :)
3 - If we remove the 4 - I will start some exploratory tests using the image available here: https://gallery.ecr.aws/lambda/python. Thanks |
For transparency, here's our playbook for releasing a new version of Powertools to add support for the AWS Lambda Python 3.11 runtime, when it's released in GA. Steps1. Prerequisites
2. Testing locally
3. Bumping the supported runtimes in the layer constructOn the CDK Layer repository, do:
4. Updating workflows and templates
5. Layer
6. SAR
7. Change the PyPi metadata
8. Open a PR and run E2E tests
9. Examples
10. Merge and release
|
|
This is now released under 2.22.0 version! |
This is now released under 2.23.0 version! |
Why is this needed?
Python 3.11 official docker image is available in preview: aws/aws-lambda-base-images#62 (comment)
Which area does this relate to?
Other
Solution
Add support in CI. We have some customers using Python 3.11 using OCI images in Lambda.
Acknowledgment
The text was updated successfully, but these errors were encountered: