Skip to content

Commit 40a65d7

Browse files
committed
update fastapi version
1 parent 49fa6fd commit 40a65d7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,5 @@ cdk.out/
108108
docs/api
109109

110110
benchmark/
111+
112+
.pgdata

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## 0.2.1 (2022-01-25)
4+
5+
* update FastAPI version requirement to allow `>=0.73`
6+
37
## 0.2.0 (2022-01-05)
48

59
* Faster and cleaner SQL code

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@
88
inst_reqs = [
99
"asyncpg>=0.23.0",
1010
"buildpg>=0.3",
11-
# We cannot support fastapi > 0.68 because openapi doesn't support Tuple with fixed lenght and will make the docs to fail
12-
# ref: https://github.com/tiangolo/fastapi/pull/3038, https://github.com/tiangolo/fastapi/issues/1870
13-
"fastapi>=0.65,<0.68",
14-
"jinja2>=2.11.2,<3.0.0",
11+
"fastapi>=0.65,!=0.68.0,!=0.68.1,!=0.68.2,!=0.69.0,!=0.70.0,!=0.70.1,!=0.71.0,!=0.72.0",
12+
"jinja2>=2.11.2,<4.0.0",
1513
"morecantile>=3.0.2,<3.1",
1614
"starlette-cramjam>=0.1.0,<0.2",
1715
"importlib_resources>=1.1.0;python_version<'3.9'",
@@ -31,7 +29,7 @@
3129
extra_reqs = {
3230
"test": test_reqs,
3331
"dev": test_reqs + ["pre-commit"],
34-
"server": ["uvicorn[standard]>=0.12.0,<0.14.0"],
32+
"server": ["uvicorn[standard]>=0.12.0,<0.16.0"],
3533
"docs": [
3634
"nbconvert",
3735
"mkdocs",

0 commit comments

Comments
 (0)