Skip to content

Commit f1c2318

Browse files
authored
update python version (#55)
1 parent 5b8d55f commit f1c2318

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: .github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ master ]
66
pull_request:
77
branches: [ master ]
8+
workflow_dispatch:
89

910
jobs:
1011
test:
@@ -13,10 +14,12 @@ jobs:
1314
fail-fast: false
1415
matrix:
1516
python-version:
17+
- "3.13"
18+
- "3.12"
19+
- "3.11"
1620
- "3.10"
1721
- "3.9"
1822
- "3.8"
19-
- "3.7"
2023

2124
steps:
2225
- uses: actions/checkout@v2

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# LocalStack Python Client Change Log
22

3+
* v2.8: Removes support for python `3.6` and `3.7` and adds `3.12` and `3.13` for parity with boto3
34
* v2.7: Add endpoint config for EventBridge Pipes
45
* v2.6: Add endpoint config for Pinpoint
56
* v2.5: Add endpoint config for AppConfig Data

Diff for: setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[metadata]
22
name = localstack-client
3-
version = 2.7
3+
version = 2.8
44
url = https://github.com/localstack/localstack-python-client
55
author = LocalStack Team
66
author_email = [email protected]
77
description = A lightweight Python client for LocalStack.
88
license = Apache License 2.0
99
classifiers =
1010
Programming Language :: Python :: 3
11-
Programming Language :: Python :: 3.6
12-
Programming Language :: Python :: 3.7
1311
Programming Language :: Python :: 3.8
1412
Programming Language :: Python :: 3.9
1513
Programming Language :: Python :: 3.10
1614
Programming Language :: Python :: 3.11
15+
Programming Language :: Python :: 3.12
16+
Programming Language :: Python :: 3.13
1717
License :: OSI Approved :: Apache Software License
1818
Topic :: Software Development :: Testing
1919

0 commit comments

Comments
 (0)