Skip to content

Commit 2ff632c

Browse files
committed
Update supported Python versions
1 parent 9411f70 commit 2ff632c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
env:
1818
PYTHON: ${{ matrix.python }}
1919
steps:
@@ -33,4 +33,4 @@ jobs:
3333
run: pytest --cov-report=xml --cov-report=term
3434

3535
- uses: codecov/codecov-action@v3
36-
if: ${{ matrix.python == '3.11' }}
36+
if: ${{ matrix.python == '3.12' }}

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Unreleased
66
========================
77

88
- Removed errant print statement
9+
- Removed official support for Python 3.7
10+
- Added support for Python 3.12
911

1012
3.1.0 (10 February 2024)
1113
========================

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "goodconf"
33
description = "Load configuration variables from a file or environment"
44
readme = "README.rst"
5-
requires-python = ">=3.7"
5+
requires-python = ">=3.8"
66
authors = [
77
{name = "Peter Baumgartner", email = "brett@python.org"}
88
]
@@ -14,11 +14,11 @@ classifiers = [
1414
"License :: OSI Approved :: MIT License",
1515
"Operating System :: OS Independent",
1616
"Programming Language :: Python",
17-
"Programming Language :: Python :: 3.7",
1817
"Programming Language :: Python :: 3.8",
1918
"Programming Language :: Python :: 3.9",
2019
"Programming Language :: Python :: 3.10",
21-
"Programming Language :: Python :: 3.11"
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
2222
]
2323
dynamic = ["version"]
2424
dependencies = [

0 commit comments

Comments
 (0)