Skip to content

Commit

Permalink
Fixed dropped asgiref dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Jul 3, 2023
1 parent 4f8386f commit 9512f43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/versionhistory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Version history

This library adheres to `Semantic Versioning 2.0 <http://semver.org/>`_.

**1.2.1**

- Fixed unintentional change where the asgiref dependency was dropped from the
``fastapi``, ``django`` and ``starlette`` extras

**1.2.0**

- Dropped Python 3.7 support
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,17 @@ asgi3 = [
"uvicorn >= 0.17.6",
]
django = [
"asgiref ~= 3.5",
"Django >= 3.2",
"uvicorn >= 0.17.6",
]
fastapi = [
"asgiref ~= 3.5",
"fastapi >= 0.75",
"uvicorn >= 0.17.6",
]
starlette = [
"asgiref ~= 3.5",
"starlette >= 0.17",
"uvicorn >= 0.17.6",
]
Expand Down

0 comments on commit 9512f43

Please sign in to comment.