Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit dd4b6e1

Browse files
committed
chore: rename extras poetry group to all
1 parent 4f73442 commit dd4b6e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

layer/Python/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG PACKAGE_SUFFIX=''
55
USER root
66
WORKDIR /tmp
77

8-
# PACKAGE_SUFFIX = '[extras]==1.23.0'
9-
# PACKAGE_SUFFIX = '[extras]'
10-
# PACKAGE_SUFFIX = '=='1.23.0'
8+
# PACKAGE_SUFFIX = '[all]==2.0.0'
9+
# PACKAGE_SUFFIX = '[all]'
10+
# PACKAGE_SUFFIX = '=='2.0.0'
1111
# PACKAGE_SUFFIX = ''
1212

1313
RUN yum update -y && yum install -y zip unzip wget tar gzip

src/lambda-powertools-layer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class LambdaPowertoolsLayer extends lambda.LayerVersion {
5555
switch (runtimeFamily) {
5656
case lambda.RuntimeFamily.PYTHON:
5757
if (includeExtras) {
58-
suffix = '[extras]';
58+
suffix = '[all]';
5959
}
6060
if (version) {
6161
suffix = `${suffix}==${version}`;

0 commit comments

Comments
 (0)