We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dbb198 commit d7d891fCopy full SHA for d7d891f
1 file changed
speedup.py
@@ -24,12 +24,14 @@ def build(setup_kwargs):
24
"baize/asgi/requests.py",
25
"baize/asgi/responses.py",
26
"baize/asgi/routing.py",
27
+ "baize/asgi/shortcut.py" if os.name == "nt" else None,
28
"baize/asgi/staticfiles.py",
29
"baize/asgi/websocket.py",
30
# WSGI
31
"baize/wsgi/requests.py",
32
"baize/wsgi/responses.py",
33
"baize/wsgi/routing.py",
34
+ "baize/wsgi/shortcut.py" if os.name == "nt" else None,
35
"baize/wsgi/staticfiles.py",
36
),
37
map(str, Path("baize").glob("**/*.py")),
0 commit comments