From 2c65ab0cb1786c49ab8c20feb1e40db79efd8d37 Mon Sep 17 00:00:00 2001 From: cakemanny Date: Sun, 4 Feb 2024 11:07:21 +0100 Subject: [PATCH] add python 3.12 to test matrix --- .github/workflows/pythonpackage.yml | 6 +++--- CHANGELOG.md | 2 ++ setup.py | 6 ++++++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index ed36f85..c21161d 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -8,12 +8,12 @@ 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'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index 44bceac..e9ea9ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Support for Python 3.12 ## [0.6.1] - 2022-11-26 ### Fixed diff --git a/setup.py b/setup.py index 4e1471b..ea84434 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,12 @@ }, classifiers=[ "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Intended Audience :: Developers",