From fafc132dcb0597b40ae836d737e24a24035dc756 Mon Sep 17 00:00:00 2001 From: nabbisen Date: Sun, 29 Aug 2021 22:21:36 +0900 Subject: [PATCH 1/4] Update cherokee links in docs/deploying (#4249) --- docs/deploying/fastcgi.rst | 2 +- docs/deploying/uwsgi.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deploying/fastcgi.rst b/docs/deploying/fastcgi.rst index ef2201c8..d3614d37 100644 --- a/docs/deploying/fastcgi.rst +++ b/docs/deploying/fastcgi.rst @@ -234,5 +234,5 @@ python path. Common problems are: .. _nginx: https://nginx.org/ .. _lighttpd: https://www.lighttpd.net/ -.. _cherokee: http://cherokee-project.com/ +.. _cherokee: https://cherokee-project.com/ .. _flup: https://pypi.org/project/flup/ diff --git a/docs/deploying/uwsgi.rst b/docs/deploying/uwsgi.rst index 22930d7b..5b6fedad 100644 --- a/docs/deploying/uwsgi.rst +++ b/docs/deploying/uwsgi.rst @@ -67,5 +67,5 @@ to have it in the URL root its a bit simpler:: .. _nginx: https://nginx.org/ .. _lighttpd: https://www.lighttpd.net/ -.. _cherokee: http://cherokee-project.com/ +.. _cherokee: https://cherokee-project.com/ .. _uwsgi: https://uwsgi-docs.readthedocs.io/en/latest/ From e1dce5c39ac093915a34bac99c37402245fd52f4 Mon Sep 17 00:00:00 2001 From: Mindiell <61205582+Mindiell@users.noreply.github.com> Date: Wed, 8 Sep 2021 10:00:36 +0200 Subject: [PATCH 2/4] Fix typo in docs (#4261) --- docs/deploying/uwsgi.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying/uwsgi.rst b/docs/deploying/uwsgi.rst index 5b6fedad..b6958dc0 100644 --- a/docs/deploying/uwsgi.rst +++ b/docs/deploying/uwsgi.rst @@ -37,7 +37,7 @@ If your application is accessible at root level, you can use a single ``/`` instead of ``/yourapplication``. ``myapp`` refers to the name of the file of your flask application (without extension) or the module which provides ``app``. ``app`` is the callable inside of your application (usually -the line reads ``app = Flask(__name__)``. +the line reads ``app = Flask(__name__)``). If you want to deploy your flask application inside of a virtual environment, you need to also add ``--virtualenv /path/to/virtual/environment``. You might From 7c7b583603f85b3253b6d531d7f8e8d29060ddc7 Mon Sep 17 00:00:00 2001 From: David Lord Date: Wed, 8 Sep 2021 16:03:56 -0700 Subject: [PATCH 3/4] update pre-commit hooks --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 970b8d2a..b648e3f0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ ci: autoupdate_schedule: monthly repos: - repo: https://github.com/asottile/pyupgrade - rev: v2.23.3 + rev: v2.25.0 hooks: - id: pyupgrade args: ["--py36-plus"] @@ -14,7 +14,7 @@ repos: files: "^(?!examples/)" args: ["--application-directories", "src"] - repo: https://github.com/psf/black - rev: 21.7b0 + rev: 21.8b0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 From 313a70da6ef4b265f9334f909d946b2d9bbae701 Mon Sep 17 00:00:00 2001 From: David Lord Date: Wed, 8 Sep 2021 16:04:26 -0700 Subject: [PATCH 4/4] update requirements --- requirements/dev.txt | 20 ++++++++++---------- requirements/docs.txt | 2 +- requirements/tests.txt | 4 ++-- requirements/typing.txt | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/requirements/dev.txt b/requirements/dev.txt index 4480fdfc..4962c2ac 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -20,13 +20,13 @@ certifi==2021.5.30 # via requests cffi==1.14.6 # via cryptography -cfgv==3.3.0 +cfgv==3.3.1 # via pre-commit charset-normalizer==2.0.4 # via requests click==8.0.1 # via pip-tools -cryptography==3.4.7 +cryptography==3.4.8 # via -r requirements/typing.in distlib==0.3.2 # via virtualenv @@ -70,13 +70,13 @@ pep517==0.11.0 # via pip-tools pip-tools==6.2.0 # via -r requirements/dev.in -platformdirs==2.2.0 +platformdirs==2.3.0 # via virtualenv -pluggy==0.13.1 +pluggy==1.0.0 # via # pytest # tox -pre-commit==2.14.0 +pre-commit==2.15.0 # via -r requirements/dev.in py==1.10.0 # via @@ -84,13 +84,13 @@ py==1.10.0 # tox pycparser==2.20 # via cffi -pygments==2.9.0 +pygments==2.10.0 # via # sphinx # sphinx-tabs pyparsing==2.4.7 # via packaging -pytest==6.2.4 +pytest==6.2.5 # via -r requirements/tests.in python-dotenv==0.19.0 # via -r requirements/tests.in @@ -139,7 +139,7 @@ toml==0.10.2 # tox tomli==1.2.1 # via pep517 -tox==3.24.1 +tox==3.24.3 # via -r requirements/dev.in types-contextvars==0.1.4 # via -r requirements/typing.in @@ -147,11 +147,11 @@ types-dataclasses==0.1.7 # via -r requirements/typing.in types-setuptools==57.0.2 # via -r requirements/typing.in -typing-extensions==3.10.0.0 +typing-extensions==3.10.0.2 # via mypy urllib3==1.26.6 # via requests -virtualenv==20.7.1 +virtualenv==20.7.2 # via # pre-commit # tox diff --git a/requirements/docs.txt b/requirements/docs.txt index 54543279..a11b7d3c 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -30,7 +30,7 @@ packaging==21.0 # sphinx pallets-sphinx-themes==2.0.1 # via -r requirements/docs.in -pygments==2.9.0 +pygments==2.10.0 # via # sphinx # sphinx-tabs diff --git a/requirements/tests.txt b/requirements/tests.txt index 0fac47d7..66bc443d 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -16,13 +16,13 @@ iniconfig==1.1.1 # via pytest packaging==21.0 # via pytest -pluggy==0.13.1 +pluggy==1.0.0 # via pytest py==1.10.0 # via pytest pyparsing==2.4.7 # via packaging -pytest==6.2.4 +pytest==6.2.5 # via -r requirements/tests.in python-dotenv==0.19.0 # via -r requirements/tests.in diff --git a/requirements/typing.txt b/requirements/typing.txt index d4a125f1..106a0a21 100644 --- a/requirements/typing.txt +++ b/requirements/typing.txt @@ -6,7 +6,7 @@ # cffi==1.14.6 # via cryptography -cryptography==3.4.7 +cryptography==3.4.8 # via -r requirements/typing.in mypy==0.910 # via -r requirements/typing.in @@ -22,5 +22,5 @@ types-dataclasses==0.1.7 # via -r requirements/typing.in types-setuptools==57.0.2 # via -r requirements/typing.in -typing-extensions==3.10.0.0 +typing-extensions==3.10.0.2 # via mypy