diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index da18417a..1e701ffe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] django-version: ["5.0", "5.1", "5.2", "-main"] steps: @@ -75,7 +75,7 @@ jobs: strategy: fail-fast: false 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"] django-version: ["4.0", "4.1", "4.2"] steps: @@ -127,7 +127,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.12"] + python-version: ["3.13"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 806a0f35..05922c44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - published env: - DEFAULT_PYTHON: 3.12 + DEFAULT_PYTHON: 3.13 jobs: release-pypi: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 78eff74f..77a78c29 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: args: [--fix=lf] - id: debug-statements - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.3" + rev: "v0.14.4" hooks: - id: ruff-check args: ["--fix"] @@ -20,7 +20,7 @@ repos: exclude: ^pylint_django/tests/input.*$ args: [--line-length=120] - repo: https://github.com/tox-dev/pyproject-fmt - rev: "v2.11.0" + rev: "v2.11.1" hooks: - id: pyproject-fmt # https://pyproject-fmt.readthedocs.io/en/latest/#calculating-max-supported-python-version diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 80976aa8..e17a76ec 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,14 +2,16 @@ Changelog ========= -Version 2.7.0 +Version 2.6.2 ------------- Other ~~~~~ -- Add CI tests against Django 5.2 +- CI now tests against Django 5.2 - CI now tests against python 3.13 +- CI now tests against python 3.14 + Version 2.6.1 ------------- diff --git a/pyproject.toml b/pyproject.toml index fb51ac83..a90b00f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Framework :: Django :: 2.2", "Framework :: Django :: 3", "Framework :: Django :: 3.0",