From 3fd24c1f6fa2b3a5b68fb87b0fc3453a352340e5 Mon Sep 17 00:00:00 2001 From: Bo Bayles Date: Mon, 25 Apr 2022 10:28:36 -0500 Subject: [PATCH 1/2] Fix copy/paste error in wsgi-standalone.rst --- docs/deploying/wsgi-standalone.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying/wsgi-standalone.rst b/docs/deploying/wsgi-standalone.rst index 823426ac..e66eacba 100644 --- a/docs/deploying/wsgi-standalone.rst +++ b/docs/deploying/wsgi-standalone.rst @@ -73,7 +73,7 @@ uWSGI `uWSGI`_ is a fast application server written in C. It is very configurable, which makes it more complicated to setup than Gunicorn. It also provides many other utilities for writing robust web -applications. To run a Flask application, tell Gunicorn how to import +applications. To run a Flask application, tell uWSGI how to import your Flask app object. .. code-block:: text From ef7d01f0a03be512b22d2a28b5a4229fdc87ea9a Mon Sep 17 00:00:00 2001 From: David Lord Date: Thu, 28 Apr 2022 08:59:40 -0700 Subject: [PATCH 2/2] update requirements --- .pre-commit-config.yaml | 2 +- requirements/dev.txt | 2 +- requirements/typing.txt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 654331dc..fa395c57 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: - id: pyupgrade args: ["--py36-plus"] - repo: https://github.com/asottile/reorder_python_imports - rev: v3.0.1 + rev: v3.1.0 hooks: - id: reorder-python-imports name: Reorder Python imports (src, tests) diff --git a/requirements/dev.txt b/requirements/dev.txt index 39957953..36999074 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -22,7 +22,7 @@ filelock==3.6.0 # virtualenv greenlet==1.1.2 ; python_version < "3.11" # via -r requirements/tests.in -identify==2.4.12 +identify==2.5.0 # via pre-commit nodeenv==1.6.0 # via pre-commit diff --git a/requirements/typing.txt b/requirements/typing.txt index 44cce82a..f1aa5284 100644 --- a/requirements/typing.txt +++ b/requirements/typing.txt @@ -7,9 +7,9 @@ # cffi==1.15.0 # via cryptography -cryptography==36.0.2 +cryptography==37.0.1 # via -r requirements/typing.in -mypy==0.942 +mypy==0.950 # via -r requirements/typing.in mypy-extensions==0.4.3 # via mypy