Skip to content

Commit

Permalink
[FIX] fastapi: Fix minimal version for ext dependencies
Browse files Browse the repository at this point in the history
These minimal versions ensure that the retrying mechanism from odoo is working fine with the way the werkezeug request is pass from odoo to the fastapi app.
  • Loading branch information
lmignon committed Jun 27, 2024
1 parent e871a22 commit 8b82ecd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fastapi/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"demo": ["demo/fastapi_endpoint_demo.xml"],
"external_dependencies": {
"python": [
"fastapi",
"fastapi>=0.110.0",
"python-multipart",
"ujson",
"a2wsgi",
"a2wsgi>=1.10.6",
"parse-accept-language",
]
},
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# generated from manifests external_dependencies
a2wsgi
a2wsgi>=1.10.6
apispec
apispec>=4.0.0
cerberus
contextvars
extendable-pydantic
extendable-pydantic>=1.2.0
extendable>=0.0.4
fastapi
fastapi>=0.110.0
graphene
graphql_server
jsondiff
Expand Down

0 comments on commit 8b82ecd

Please sign in to comment.