Skip to content

Commit 899ad12

Browse files
authored
Bump the minimum Python supported version to 3.11 (#113)
2 parents 653075d + 4d6b5c1 commit 899ad12

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
os:
2222
- ubuntu-20.04
2323
python-version:
24-
- "3.8"
25-
- "3.9"
26-
- "3.10"
2724
- "3.11"
2825
runs-on: ${{ matrix.os }}
2926

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Upgrading
88

9-
<!-- Here goes notes on how to upgrade from previous versions, including if there are any deprecations and what they should be replaced with -->
9+
* The minimum supported Python version was bumped to 3.11, downstream projects will need to upgrade too to use this version.
1010

1111
## New Features
1212

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@ classifiers = [
1515
"License :: OSI Approved :: MIT License",
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3.8",
19-
"Programming Language :: Python :: 3.9",
20-
"Programming Language :: Python :: 3.10",
2118
"Topic :: Software Development :: Libraries",
2219
]
23-
requires-python = ">= 3.8, < 4"
20+
requires-python = ">= 3.11, < 4"
2421
dependencies = ["watchfiles >= 0.15.0, < 0.20.0"]
2522
dynamic = ["version"]
2623

0 commit comments

Comments
 (0)