From dff7d1efa216597c9cafa73f80d0c37c8b29abc9 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Fri, 9 Feb 2024 21:56:57 +0100 Subject: [PATCH] :arrow_up: Bump Python versions Drops Python 3.7 (EOL), add 3.11 and 3.12 --- .github/workflows/tests.yml | 2 +- CHANGELOG.md | 5 +++++ tox.ini | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4898b03..fc173ba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: runs-on: windows-2019 strategy: matrix: - python: ['3.7', '3.8', '3.9', '3.10'] + python: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 947865f..68e6f51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [unreleased] + - fix double free due to using cast rather than QueryInterface, refs #74 (@mrob95) + - add: example for IMMNotificationClient, refs #77 (@Invisi) + - IChannelAudioVolume support, refs #87 (@mltony) + ## [20230407] - Fixes memory leak from PROPVARIANT, refs #72 (@KillerBOSS2019) diff --git a/tox.ini b/tox.ini index c91fe6a..b4a7578 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint-check,py{37,38,39,310} +envlist = lint-check,py{38,39,310,311,312} skipsdist = True [testenv]