From deb8ea458c5d722b17f1eaddbbc941e461a131b7 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Fri, 20 Aug 2021 18:16:21 +0200 Subject: [PATCH 1/2] feat: support for Python 3.9 --- .github/workflows/python_build.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_build.yml b/.github/workflows/python_build.yml index 7b4a1bdd77f..4909b9ab2e4 100644 --- a/.github/workflows/python_build.yml +++ b/.github/workflows/python_build.yml @@ -16,7 +16,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 39] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 5a92641e26c..a38dfbadc61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "aws_lambda_powertools" version = "1.19.0" -description = "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, and more." +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." authors = ["Amazon Web Services"] include = ["aws_lambda_powertools/py.typed"] classifiers=[ @@ -12,6 +12,7 @@ classifiers=[ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ] repository="https://github.com/awslabs/aws-lambda-powertools-python" readme = "README.md" From 77d14a8361e3be022619afc5935b681f610fefc8 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Fri, 20 Aug 2021 18:19:29 +0200 Subject: [PATCH 2/2] chore: typo --- .github/workflows/python_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_build.yml b/.github/workflows/python_build.yml index 4909b9ab2e4..26fbaeb3c4e 100644 --- a/.github/workflows/python_build.yml +++ b/.github/workflows/python_build.yml @@ -16,7 +16,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7, 3.8, 39] + python-version: [3.6, 3.7, 3.8, 3.9] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }}