diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f875965..fc84cb7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 diff --git a/.mergify.yml b/.mergify.yml index 893630e..b60b9a1 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -4,6 +4,8 @@ shared: - check-success=Test with Python 3.10 - check-success=Test with Python 3.11 - check-success=Test with Python 3.12 + - check-success=Test with Python 3.13 + - check-success=Test with Python 3.14 - check-success=semgrep default_review_cond: &DefaultReviewCond - "#approved-reviews-by>=1" diff --git a/pyproject.toml b/pyproject.toml index 1ed8a01..513a9ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Database",