Skip to content

Commit deb8ea4

Browse files
committed
feat: support for Python 3.9
1 parent b2773d5 commit deb8ea4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/python_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
max-parallel: 4
1818
matrix:
19-
python-version: [3.6, 3.7, 3.8]
19+
python-version: [3.6, 3.7, 3.8, 39]
2020
env:
2121
OS: ${{ matrix.os }}
2222
PYTHON: ${{ matrix.python-version }}

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "aws_lambda_powertools"
33
version = "1.19.0"
4-
description = "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, and more."
4+
description = "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, batching, idempotency, feature flags, and more."
55
authors = ["Amazon Web Services"]
66
include = ["aws_lambda_powertools/py.typed"]
77
classifiers=[
@@ -12,6 +12,7 @@ classifiers=[
1212
"Programming Language :: Python :: 3.6",
1313
"Programming Language :: Python :: 3.7",
1414
"Programming Language :: Python :: 3.8",
15+
"Programming Language :: Python :: 3.9",
1516
]
1617
repository="https://github.com/awslabs/aws-lambda-powertools-python"
1718
readme = "README.md"

0 commit comments

Comments
 (0)