Skip to content

Commit c54e374

Browse files
ericapisaniclaude
andcommitted
fix(build): Update AWS Lambda layer wheel name for py3-only wheel
Removing `bdist_wheel universal=1` from `setup.py` changed the produced wheel filename from `sentry_sdk-<ver>-py2.py3-none-any.whl` to `sentry_sdk-<ver>-py3-none-any.whl`. Update the hardcoded wheel path in `scripts/build_aws_lambda_layer.py` to match. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 25baa75 commit c54e374

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/build_aws_lambda_layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def install_python_packages(self) -> None:
4949

5050
sentry_python_sdk = os.path.join(
5151
DIST_PATH,
52-
f"sentry_sdk-{SDK_VERSION}-py2.py3-none-any.whl", # this is generated by "make dist" that is called by "make aws-lambda-layer"
52+
f"sentry_sdk-{SDK_VERSION}-py3-none-any.whl", # this is generated by "make dist" that is called by "make aws-lambda-layer"
5353
)
5454
subprocess.run(
5555
[

0 commit comments

Comments
 (0)