From 76e392004c8fd27877129fa6be2a5a5e031eb2b8 Mon Sep 17 00:00:00 2001 From: Mathieu Cloutier Date: Tue, 19 Nov 2024 13:16:49 -0700 Subject: [PATCH 1/3] update ci python version --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d48bbf3..a74e6c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: [ master ] pull_request: branches: [ master ] + workflow_dispatch jobs: test: @@ -13,10 +14,12 @@ jobs: fail-fast: false matrix: python-version: + - "3.13" + - "3.12" + - "3.11" - "3.10" - "3.9" - "3.8" - - "3.7" steps: - uses: actions/checkout@v2 From f335fb876b9253fc186e8ff7ceb27ec8871a99b3 Mon Sep 17 00:00:00 2001 From: Mathieu Cloutier Date: Tue, 19 Nov 2024 13:21:51 -0700 Subject: [PATCH 2/3] update setup and changelog --- CHANGELOG.md | 1 + setup.cfg | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08de6ca..6476dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* v2.8: Removes support for python `3.6` and `3.7` and adds `3.12` and `3.13` for parity with boto3 * v2.7: Add endpoint config for EventBridge Pipes * v2.6: Add endpoint config for Pinpoint * v2.5: Add endpoint config for AppConfig Data diff --git a/setup.cfg b/setup.cfg index aa02212..4b18765 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 2.7 +version = 2.8 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud @@ -8,12 +8,12 @@ description = A lightweight Python client for LocalStack. license = Apache License 2.0 classifiers = Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 License :: OSI Approved :: Apache Software License Topic :: Software Development :: Testing From eddc9c36c2f1b6add2ec781349fe9c9adce29ca9 Mon Sep 17 00:00:00 2001 From: Mathieu Cloutier Date: Tue, 19 Nov 2024 13:25:14 -0700 Subject: [PATCH 3/3] fix workflow dispatch --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a74e6c7..5b894e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: branches: [ master ] pull_request: branches: [ master ] - workflow_dispatch + workflow_dispatch: jobs: test: