Skip to content

Commit

Permalink
config
Browse files Browse the repository at this point in the history
  • Loading branch information
sentrivana committed Jan 22, 2025
1 parent 452c1ab commit 5ebec40
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion scripts/populate_tox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,28 @@
#
# See scripts/populate_tox/README.md for more info on the format and examples.

TEST_SUITE_CONFIG = {}
TEST_SUITE_CONFIG = {
"flask": {
"package": "flask",
"deps": {
"*": ["flask-login", "werkzeug"],
"<2.0": ["werkzeug<2.1.0", "markupsafe<2.1.0"],
},
},
"starlette": {
"package": "starlette",
"deps": {
"*": [
"pytest-asyncio",
"python-multipart",
"requests",
"anyio<4.0.0",
"jinja2",
"httpx",
],
"<=0.36": ["httpx<0.28.0"],
"<0.15": ["jinja2<3.1"],
"py3.6": ["aiocontextvars"],
},
},
}

0 comments on commit 5ebec40

Please sign in to comment.