Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump a2wsgi and drop monkeypatch #1647

Merged
merged 1 commit into from
Feb 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion connexion/apps/flask.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import flask
import werkzeug.exceptions
from a2wsgi import WSGIMiddleware
from flask import Response as FlaskResponse
from flask import signals
from starlette.types import Receive, Scope, Send
Expand All @@ -17,7 +18,6 @@
from connexion.frameworks import flask as flask_utils
from connexion.jsonifier import Jsonifier
from connexion.middleware.abstract import AbstractRoutingAPI, SpecMiddleware
from connexion.middleware.wsgi import WSGIMiddleware
from connexion.operations import AbstractOperation
from connexion.problem import problem
from connexion.resolver import Resolver
Expand Down
25 changes: 0 additions & 25 deletions connexion/middleware/wsgi.py

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ starlette = "^0.25"
typing-extensions = "^4"
werkzeug = "^2.2.1"

a2wsgi = { version = "^1.4", optional = true }
a2wsgi = { version = "^1.7", optional = true }
flask = { version = "^2.2", extras = ["async"], optional = true }
py-swagger-ui = { version = "^1.1.0", optional = true }
uvicorn = { version = "^0.17.6", extras = ["standard"], optional = true }
Expand Down