Skip to content

Commit a762c33

Browse files
committed
Add python3.13.
1 parent 2fe3eca commit a762c33

9 files changed

+19
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can include this package in your preferred base image to make that base imag
1010

1111
## Requirements
1212
The Python Runtime Interface Client package currently supports Python versions:
13-
- 3.7.x up to and including 3.12.x
13+
- 3.7.x up to and including 3.13.x
1414

1515
## Usage
1616

awslambdaric/bootstrap.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -454,9 +454,10 @@ def run(app_root, handler, lambda_runtime_api_addr):
454454
sys.stdout = Unbuffered(sys.stdout)
455455
sys.stderr = Unbuffered(sys.stderr)
456456

457-
use_thread_for_polling_next = (
458-
os.environ.get("AWS_EXECUTION_ENV") == "AWS_Lambda_python3.12"
459-
)
457+
use_thread_for_polling_next = os.environ.get("AWS_EXECUTION_ENV") in [
458+
"AWS_Lambda_python3.12",
459+
"AWS_Lambda_python3.13",
460+
]
460461

461462
with create_log_sink() as log_sink:
462463
lambda_runtime_client = LambdaRuntimeClient(

awslambdaric/lambda_runtime_marshaller.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
# We also set 'ensure_ascii=False' so that the encoded json contains unicode characters instead of unicode escape sequences
1616
class Encoder(json.JSONEncoder):
1717
def __init__(self):
18-
if os.environ.get("AWS_EXECUTION_ENV") == "AWS_Lambda_python3.12":
18+
if os.environ.get("AWS_EXECUTION_ENV") in {
19+
"AWS_Lambda_python3.12",
20+
"AWS_Lambda_python3.13",
21+
}:
1922
super().__init__(use_decimal=False, ensure_ascii=False, allow_nan=True)
2023
else:
2124
super().__init__(use_decimal=False, allow_nan=True)

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def read_requirements(req="base.txt"):
9191
"Programming Language :: Python :: 3.10",
9292
"Programming Language :: Python :: 3.11",
9393
"Programming Language :: Python :: 3.12",
94+
"Programming Language :: Python :: 3.13",
9495
"License :: OSI Approved :: Apache Software License",
9596
"Operating System :: OS Independent",
9697
],

tests/integration/codebuild/buildspec.os.alpine.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ batch:
2222
- "3.10"
2323
- "3.11"
2424
- "3.12"
25+
- "3.13"
2526
phases:
2627
pre_build:
2728
commands:

tests/integration/codebuild/buildspec.os.amazonlinux.2.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ batch:
2121
- "3.10"
2222
- "3.11"
2323
- "3.12"
24+
- "3.13"
2425
phases:
2526
pre_build:
2627
commands:

tests/integration/codebuild/buildspec.os.debian.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ batch:
2222
- "3.10"
2323
- "3.11"
2424
- "3.12"
25+
- "3.13"
2526
phases:
2627
pre_build:
2728
commands:

tests/integration/codebuild/buildspec.os.ubuntu.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ batch:
2222
- "3.10"
2323
- "3.11"
2424
- "3.12"
25+
- "3.13"
2526
phases:
2627
pre_build:
2728
commands:

tests/test_lambda_runtime_marshaller.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@
1111

1212
class TestLambdaRuntimeMarshaller(unittest.TestCase):
1313
execution_envs = (
14+
"AWS_Lambda_python3.13",
1415
"AWS_Lambda_python3.12",
1516
"AWS_Lambda_python3.11",
1617
"AWS_Lambda_python3.10",
1718
"AWS_Lambda_python3.9",
1819
)
1920

20-
envs_lambda_marshaller_ensure_ascii_false = {"AWS_Lambda_python3.12"}
21+
envs_lambda_marshaller_ensure_ascii_false = {
22+
"AWS_Lambda_python3.12",
23+
"AWS_Lambda_python3.13",
24+
}
2125

2226
execution_envs_lambda_marshaller_ensure_ascii_true = tuple(
2327
set(execution_envs).difference(envs_lambda_marshaller_ensure_ascii_false)

0 commit comments

Comments
 (0)