Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
# Pin to the last release that supports Python 3.9
version: "2.2.1"
virtualenvs-in-project: true

- name: Cache virtualenv
Expand All @@ -51,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4

Expand All @@ -62,8 +60,6 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
# Pin to the last release that supports Python 3.9
version: "2.2.1"
virtualenvs-in-project: true

- name: Cache virtualenv
Expand Down Expand Up @@ -104,7 +100,7 @@ jobs:
matrix:
# Run functional (Docker/LocalStack) tests only on the ends of the
# supported range; unit/integration cover the full matrix.
python-version: ["3.9", "3.12"]
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

0.8.0 (2026-08-21)

- Drop support for Python 3.9


0.7.0 (2026-08-13)
------------------

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ lint: $(INSTALL_STAMP) ## check code style

.PHONY: fmt
fmt: $(INSTALL_STAMP) ## apply code style formatting
$(POETRY) run isort --profile=black --lines-after-imports=2 ./tests/ $(NAME)
$(POETRY) run isort --profile=black ./tests/ $(NAME)
$(POETRY) run black ./tests/ $(NAME)

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ via a Localstack_ Docker container.
- pytest >= 7
- Docker

Tested against Python >= 3.9.
Tested against Python >= 3.10.

.. _pytest: http://docs.pytest.org/
.. _AWS: https://aws.amazon.com/
Expand Down
Loading
Loading