Skip to content

Commit 74eb9e8

Browse files
Should not run CDK tests with all python version
1 parent 19df9ab commit 74eb9e8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/quality_code_cdk_constructor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
max-parallel: 4
3535
matrix:
36-
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
36+
python-version: ["3.13"]
3737
env:
3838
PYTHON: "${{ matrix.python-version }}"
3939
permissions:

layer_v3/layer_constructors/layer_stack.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ class LambdaPowertoolsLayerPythonV3(lambda_.LayerVersion):
2626
include_extras (bool): Whether to include extra dependencies. Defaults to True.
2727
architecture (lambda_.Architecture): The compatible Lambda architecture. Defaults to x86_64.
2828
powertools_version (str): The version of Powertools to use. If empty, uses the latest version.
29-
layer_name (str): Custom name for the Lambda Layer. If empty, a default name will be used.
29+
layer_name (str): Custom name for the Lambda Layer. If empty, a default name will be used in the layer.
30+
3031
3132
Example:
3233
>>> app = cdk.App()

0 commit comments

Comments
 (0)