Skip to content

Commit

Permalink
Require typing_extensions on Python < 3.11 (#57)
Browse files Browse the repository at this point in the history
Fixes: #52
  • Loading branch information
encukou authored Jun 26, 2024
1 parent 2f72570 commit aaf1733
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[project]
authors = [{ name = "abersheeran", email = "[email protected]" }]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = []
dependencies = [
"typing_extensions; python_version<'3.11'"
]
description = "Convert WSGI app to ASGI app or ASGI app to WSGI app."
license = { text = "Apache-2.0" }
name = "a2wsgi"
Expand Down

0 comments on commit aaf1733

Please sign in to comment.