Skip to content

Commit

Permalink
Bump the minimum Python supported version to 3.11 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
llucax authored Jun 2, 2023
2 parents 653075d + 4d6b5c1 commit 899ad12
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:
os:
- ubuntu-20.04
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Upgrading

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

## New Features

Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,9 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
]
requires-python = ">= 3.8, < 4"
requires-python = ">= 3.11, < 4"
dependencies = ["watchfiles >= 0.15.0, < 0.20.0"]
dynamic = ["version"]

Expand Down

0 comments on commit 899ad12

Please sign in to comment.