Skip to content

Commit 3450a60

Browse files
authored
import python_multipart instead of multipart (#1995)
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
1 parent e9d2535 commit 3450a60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

connexion/lifecycle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import typing as t
66
from collections import defaultdict
77

8-
from multipart.multipart import parse_options_header
8+
from python_multipart.multipart import parse_options_header
99
from starlette.datastructures import UploadFile
1010
from starlette.requests import Request as StarletteRequest
1111
from werkzeug import Request as WerkzeugRequest

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ httpx = ">= 0.23"
5050
inflection = ">= 0.3.1"
5151
jsonschema = ">=4.17.3"
5252
Jinja2 = ">= 3.0.0"
53-
python-multipart = ">= 0.0.5"
53+
python-multipart = ">= 0.0.15"
5454
PyYAML = ">= 5.1"
5555
requests = ">= 2.27"
5656
starlette = ">= 0.35"

0 commit comments

Comments
 (0)