Skip to content

Commit 22d9250

Browse files
committed
-dropped support for py3.7
-added test for py3.12
1 parent a9e9c6e commit 22d9250

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/test_n_pub.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
18+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
exclude:
21-
- os: macos-latest
22-
python-version: 3.7
23-
- os: windows-latest
24-
python-version: 3.7
2521
- os: macos-latest
2622
python-version: 3.8
2723
- os: windows-latest
@@ -34,6 +30,10 @@ jobs:
3430
python-version: 3.10
3531
- os: windows-latest
3632
python-version: 3.10
33+
- os: macos-latest
34+
python-version: 3.11
35+
- os: windows-latest
36+
python-version: 3.11
3737

3838
steps:
3939
- run: echo ${{github.ref}}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
### Changed
10+
- Dropped support for py3.7
11+
12+
913
## [0.1.0] - 2022-11-22
1014

1115
Initial release

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ license = { text = "GPL-2.0 License" }
1414
classifiers = [
1515
"Development Status :: 4 - Beta",
1616
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
17-
"Programming Language :: Python :: 3.7",
1817
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
2222
]
2323
dynamic = ["version"]
24-
requires-python = ">=3.7"
24+
requires-python = ">=3.8"
2525
dependencies = [
2626
"pywin32;platform_system=='Windows'",
2727
"typing_extensions;python_version<'3.8'",

0 commit comments

Comments
 (0)