From 461d4df74dd42878c5745cbd7bc72b388914891e Mon Sep 17 00:00:00 2001 From: Tom Carrick Date: Wed, 11 Oct 2023 17:01:49 +0200 Subject: [PATCH] Add Python 3.12 to test matrix (#155) * Add Python 3.12 to test matrix * Install build dependencies --- .github/workflows/ci.yml | 2 ++ CHANGELOG.md | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e72156..d5f0790 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" django-version: - "3.2" # LTS - "4.1" @@ -45,6 +46,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + - run: python -m pip install -U pip setuptools wheel - run: python setup.py install - run: python -m pip install pytest pytest-cov pytest-django - run: python -m pip install django~=${{ matrix.django-version }}.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index f84e9c7..98e5188 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +### Added +- Support for Python 3.12 + ## [0.11.5] - 2023-08-11 ### Added - Fix exception traceback on Python 3.8