Skip to content

Commit a7ebb3d

Browse files
docs(homepage): add banner about Python 3.7 deprecation (#3618)
* Adding banner * Python 3.7 dependency
1 parent d1f8b64 commit a7ebb3d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Diff for: docs/overrides/main.html

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{% extends "base.html" %}
22

3+
{% block announce %}
4+
<p>🚨 As of February 8, 2024, AWS Lambda will no longer allow Python 3.7 functions to be updated. Inline with this, Powertools releases will stop supporting it.</p>
5+
<p>Please ensure you update your functions to Python 3.8 or later to continue to use the latest version of Powertools for AWS Lambda (Python).</p>
6+
{% endblock %}
7+
38
{% block outdated %}
49
You're not viewing the latest version.
510
<a href="{{ '../' ~ base_url }}">

Diff for: tests/e2e/idempotency_redis/test_idempotency_redis.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
from tests.e2e.utils import data_fetcher
77
from tests.e2e.utils.data_fetcher.common import GetLambdaResponseOptions, get_lambda_response_in_parallel
88

9+
pytest.skip(reason="Redis tests disabled until we deprecate Python 3.7.", allow_module_level=True)
10+
911

1012
@pytest.fixture
1113
def ttl_cache_expiration_handler_fn_arn(infrastructure: dict) -> str:

0 commit comments

Comments
 (0)