Skip to content

Commit 18044d6

Browse files
Merge pull request #122 from Doist/goncalossilva/update-dependencies
2 parents dc6b223 + 22c47ef commit 18044d6

File tree

5 files changed

+59
-53
lines changed

5 files changed

+59
-53
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: "Python ${{ matrix.python-version }} with ${{ matrix.session }}"
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717
session: ["memory", "localstack"] # TODO: we don't test against production AWS
1818
steps:
1919
- name: Start Docker container with localstack

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Unreleased
2+
3+
- Updates all dependenices
4+
- Adds support for Python 3.13
5+
- Removes support for Python 3.8
6+
17
## [0.5.22] - 2025-02-28
28

39
### Changed

poetry.lock

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ readme = "README.md"
2020
exclude = ['tests/']
2121

2222
[tool.poetry.dependencies]
23-
python = "^3.8,<3.13"
24-
boto3 = "^1.24.62"
23+
python = "^3.9,<3.14"
24+
boto3 = "^1.27.33"
2525
attrs = "^23.1.0"
2626

27-
[tool.poetry.dev-dependencies]
28-
pytest-runner = "^6.0.0"
29-
pytest = "^8.1.1"
30-
localstack-client = "^1.7"
31-
pre-commit = "^2.20.0"
32-
ruff = "^0.5.1"
27+
[tool.poetry.group.dev.dependencies]
28+
pytest-runner = "^6.0.1"
29+
pytest = "^8.3.5"
30+
localstack-client = "^2.10"
31+
pre-commit = "^4.2.0"
32+
ruff = "^0.11.5"
3333
tox = "^4.15.1"
34-
typing-extensions = "^4.0.0"
34+
typing-extensions = "^4.13.2"
3535

3636
[build-system]
3737
requires = ["poetry-core>=1.0.0"]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
isolated_build = True
3-
envlist = py38,py39,py310,py311,py312
3+
envlist = py39,py310,py311,py312,py313
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)