Skip to content

Commit 5ebec40

Browse files
committed
config
1 parent 452c1ab commit 5ebec40

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

scripts/populate_tox/config.py

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,28 @@
55
#
66
# See scripts/populate_tox/README.md for more info on the format and examples.
77

8-
TEST_SUITE_CONFIG = {}
8+
TEST_SUITE_CONFIG = {
9+
"flask": {
10+
"package": "flask",
11+
"deps": {
12+
"*": ["flask-login", "werkzeug"],
13+
"<2.0": ["werkzeug<2.1.0", "markupsafe<2.1.0"],
14+
},
15+
},
16+
"starlette": {
17+
"package": "starlette",
18+
"deps": {
19+
"*": [
20+
"pytest-asyncio",
21+
"python-multipart",
22+
"requests",
23+
"anyio<4.0.0",
24+
"jinja2",
25+
"httpx",
26+
],
27+
"<=0.36": ["httpx<0.28.0"],
28+
"<0.15": ["jinja2<3.1"],
29+
"py3.6": ["aiocontextvars"],
30+
},
31+
},
32+
}

0 commit comments

Comments
 (0)