Skip to content

Commit e2b9832

Browse files
committed
chore: drop Python 3.9 support [BREAKING CHANGE]
1 parent 4f4628b commit e2b9832

4 files changed

Lines changed: 639 additions & 622 deletions

File tree

.github/workflows/python_ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
15+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1616

1717
steps:
1818
- uses: actions/checkout@v6

aws_sqs_batchlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Amazon SQS Batchlib"""
22

3-
__version__ = "3.0.0"
3+
__version__ = "3.1.0"
44

55
from .aws_sqs_batchlib import (
66
create_sqs_client,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "aws-sqs-batchlib"
3-
version = "3.0.0"
3+
version = "3.1.0"
44
description = "Library for working with Amazon SQS"
55
authors = [
66
{ name = "Sami Jaktholm", email = "sjakthol@outlook.com" }
77
]
88
license = "MIT"
99
readme = 'README.md'
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
dependencies = [
1212
"boto3<2"
1313
]

0 commit comments

Comments
 (0)