Skip to content

Commit bf6f543

Browse files
committed
Update to latest pinned versions -- they still work the same so stay up-to-date.
1 parent ba6df03 commit bf6f543

File tree

6 files changed

+24
-28
lines changed

6 files changed

+24
-28
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
fastapi
2-
uvicorn
1+
fastapi==0.70.0
2+
uvicorn==0.15.0

code/ch4-templates/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
fastapi
2-
uvicorn
1+
fastapi==0.70.0
2+
uvicorn==0.15.0
33
aiofiles
44

55
# This is now available on PyPI.org so we'll be using that one going forward.
6-
fastapi-chameleon
6+
fastapi-chameleon==0.1.12
77

8-
starlette
8+
starlette==0.16.0

code/ch5-viewmodels/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
fastapi
2-
uvicorn
1+
fastapi==0.70.0
2+
uvicorn==0.15.0
33
aiofiles
44

55
# This is now available on PyPI.org, so we'll be using that one going forward.
6-
fastapi-chameleon
6+
fastapi-chameleon==0.1.12
77

8-
starlette
8+
starlette==0.16.0
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
fastapi
2-
uvicorn
1+
fastapi==0.70.0
2+
uvicorn==0.15.0
33
aiofiles
44
python-multipart
55

66
# This is now available on PyPI.org, so we'll be using that one going forward.
7-
fastapi-chameleon
7+
fastapi-chameleon==0.1.12
88

9-
starlette
9+
starlette==0.16.0

code/ch7-databases/requirements.txt

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
fastapi==0.63.0
2-
uvicorn==0.13.3
1+
fastapi==0.70.0
2+
uvicorn==0.15.0
33
aiofiles
44
python-multipart
55

66
# This is now available on PyPI.org, so we'll be using that one going forward.
7-
fastapi-chameleon
7+
fastapi-chameleon==0.1.12
88

9-
starlette==0.13.6
10-
SQLAlchemy==1.3.22
9+
starlette==0.16.0
10+
SQLAlchemy==1.4.25
1111
progressbar2
1212
python-dateutil
1313
passlib
14-
15-
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
1-
fastapi==0.63.0
2-
uvicorn==0.13.3
1+
fastapi==0.70.0
2+
uvicorn==0.15.0
33
aiofiles
44
python-multipart
55

66
# This is now available on PyPI.org, so we'll be using that one going forward.
7-
fastapi-chameleon
7+
fastapi-chameleon==0.1.12
88

9-
starlette==0.13.6
9+
starlette==0.16.0
1010
progressbar2
1111
python-dateutil
1212
passlib
1313

1414
# Post-recording updates:
1515
# SQLAlchemy is out of beta for 1.4+:
16-
SQLAlchemy>=1.4.3
16+
SQLAlchemy==1.4.25
1717

1818
# SQLAlchemy started enforcing the underlying Python DB API was truly async
1919
# We don't really get that with SQLite but when you switch something like Postgres
2020
# It would "light up" with async. Since recording, SQLAlchemy throws and error
2121
# if this would be the case. We need to explicitly switch to aiosqlite.
2222
aiosqlite>=0.17.0
23-
24-

0 commit comments

Comments
 (0)