Skip to content

Commit

Permalink
⬆️ Bump Python versions
Browse files Browse the repository at this point in the history
Drops Python 3.7 (EOL), add 3.11 and 3.12
  • Loading branch information
AndreMiras committed Feb 10, 2024
1 parent ec2070d commit 745e77f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 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)
- Drop 3.7 support, added 3.11 and 3.12 support, refs #TODO (@AndreMiras)

## [20230407]
- Fixes memory leak from PROPVARIANT, refs #72 (@KillerBOSS2019)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 745e77f

Please sign in to comment.