Skip to content

Commit f9d95f3

Browse files
committed
fastapi
1 parent 0851458 commit f9d95f3

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

scripts/populate_tox/config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555
"package": "falcon",
5656
"python": "<3.13",
5757
},
58+
"fastapi": {
59+
"package": "fastapi",
60+
"deps": {
61+
"*": ["httpx", "pytest-asyncio", "python-multipart", "requests", "anyio<4"],
62+
},
63+
},
5864
"flask": {
5965
"package": "flask",
6066
"deps": {

scripts/populate_tox/populate_tox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
"boto3",
7676
"chalice",
7777
"cohere",
78-
"fastapi",
7978
"gcp",
8079
"httpx",
8180
"langchain",

tox.ini

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-04-15T11:48:52.985806+00:00
13+
# Last generated: 2025-04-15T13:26:56.525641+00:00
1414

1515
[tox]
1616
requires =
@@ -260,6 +260,11 @@ envlist =
260260
{py3.8,py3.11,py3.12}-starlette-v0.36.3
261261
{py3.9,py3.12,py3.13}-starlette-v0.46.2
262262

263+
{py3.6,py3.9,py3.10}-fastapi-v0.79.1
264+
{py3.7,py3.10,py3.11}-fastapi-v0.91.0
265+
{py3.7,py3.10,py3.11}-fastapi-v0.103.2
266+
{py3.8,py3.12,py3.13}-fastapi-v0.115.12
267+
263268

264269
# ~~~ Web 2 ~~~
265270
{py3.6,py3.7}-bottle-v0.12.25
@@ -695,6 +700,16 @@ deps =
695700
starlette-v0.36.3: httpx<0.28.0
696701
py3.6-starlette: aiocontextvars
697702

703+
fastapi-v0.79.1: fastapi==0.79.1
704+
fastapi-v0.91.0: fastapi==0.91.0
705+
fastapi-v0.103.2: fastapi==0.103.2
706+
fastapi-v0.115.12: fastapi==0.115.12
707+
fastapi: httpx
708+
fastapi: pytest-asyncio
709+
fastapi: python-multipart
710+
fastapi: requests
711+
fastapi: anyio<4
712+
698713

699714
# ~~~ Web 2 ~~~
700715
bottle-v0.12.25: bottle==0.12.25

0 commit comments

Comments
 (0)