Skip to content

Commit

Permalink
fix: drop support for python 3.10
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for python 3.11
  • Loading branch information
bj00rn committed Nov 18, 2024
1 parent 2194daf commit 3040cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
strategy:
matrix:
python:
- "3.10" # oldest Python supported by PSF
- "3.11"
- "3.12" # newest Python that is stable
platform:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ package_dir =
=src

# Require a min/specific Python version (comma-separated conditions)
python_requires = >=3.10
python_requires = >=3.11

# Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0.
# Version specifiers like >=2.2,<3.0 avoid problems due to API changes in
# new major versions. This works if the required packages follow Semantic Versioning.
# For more information, check out https://semver.org/.
install_requires =
importlib-metadata; python_version<"3.10"
importlib-metadata; python_version<"3.11"
aiohttp


Expand Down

0 comments on commit 3040cd7

Please sign in to comment.