Skip to content

Commit

Permalink
Don't drop 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Sep 20, 2024
1 parent eff2677 commit fbc6153
Show file tree
Hide file tree
Showing 3 changed files with 168 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ authors = [
]
description = "AWS Lambda support for ASGI applications"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -34,7 +35,8 @@ dev-dependencies = [
"black",
"flake8",
"starlette",
"quart",
"quart<=0.18.3; python_version < '3.8'",
"quart>0.18.3; python_version >= '3.8'",
"mypy",
"brotli",
"brotli-asgi",
Expand Down
Loading

0 comments on commit fbc6153

Please sign in to comment.