Skip to content

Commit

Permalink
import python_multipart instead of multipart (#1995)
Browse files Browse the repository at this point in the history
Changes proposed in this pull request:

- use `import python_multipart`, see
https://github.com/Kludex/python-multipart/blob/master/CHANGELOG.md#0013-2024-10-20
  • Loading branch information
dotlambda authored Nov 14, 2024
1 parent e9d2535 commit 3450a60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion connexion/lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import typing as t
from collections import defaultdict

from multipart.multipart import parse_options_header
from python_multipart.multipart import parse_options_header
from starlette.datastructures import UploadFile
from starlette.requests import Request as StarletteRequest
from werkzeug import Request as WerkzeugRequest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ httpx = ">= 0.23"
inflection = ">= 0.3.1"
jsonschema = ">=4.17.3"
Jinja2 = ">= 3.0.0"
python-multipart = ">= 0.0.5"
python-multipart = ">= 0.0.15"
PyYAML = ">= 5.1"
requests = ">= 2.27"
starlette = ">= 0.35"
Expand Down

0 comments on commit 3450a60

Please sign in to comment.