diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 26b4f73..2512058 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,17 +14,17 @@ jobs: - 9324:9324 strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - name: Install system dependencies run: sudo apt update && sudo apt install --no-install-recommends -y make git - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/cache@v4 with: path: ~/.cache key: self-runner-${{ runner.os }}-python-${{ matrix.python-version }}-requirements-${{ hashFiles('requirements-dev.txt') }}-precommit-${{ hashFiles('.pre-commit-config.yaml') }} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 514ed4e..05604b0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: check-ast - id: fix-byte-order-marker @@ -18,12 +18,12 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.11.8 + rev: v0.14.1 hooks: - id: ruff - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.15.0 + rev: v1.18.2 hooks: - id: mypy diff --git a/setup.py b/setup.py index f23d34f..23244de 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ author="Allisson Azevedo", author_email="allisson@gmail.com", classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.9", @@ -23,6 +23,7 @@ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ], keywords="aws, sqs", packages=find_packages(),