From cd30d36ccb9d92de4cf840507f93877c7a3ac3ae Mon Sep 17 00:00:00 2001 From: Jonathon Reinhart Date: Wed, 3 Jan 2024 00:36:54 -0500 Subject: [PATCH] ci: Add support for Python 3.12 (#244) --- .github/workflows/build-test.yml | 2 +- CHANGELOG.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 08ea9422..527d2c48 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] fail-fast: False steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bd7af4e..23dbece5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Added +- Added support for Python 3.12 (#244) + ### Changed - Removed use of deprecated `pkg_resources` (#247)