From 061958c322b8c039730a74415951e28ab45fd2c5 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Tue, 31 Oct 2023 12:07:52 +0000 Subject: [PATCH] Downgrade flask version --- poetry.lock | 28 +++++----------------------- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 24 deletions(-) diff --git a/poetry.lock b/poetry.lock index bc0c462..aec4084 100644 --- a/poetry.lock +++ b/poetry.lock @@ -32,23 +32,6 @@ doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)"] test = ["anyio[trio]", "coverage[toml] (>=7)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] trio = ["trio (>=0.22)"] -[[package]] -name = "asgiref" -version = "3.7.2" -description = "ASGI specs, helper code, and adapters" -optional = false -python-versions = ">=3.7" -files = [ - {file = "asgiref-3.7.2-py3-none-any.whl", hash = "sha256:89b2ef2247e3b562a16eef663bc0e2e703ec6468e2fa8a5cd61cd449786d4f6e"}, - {file = "asgiref-3.7.2.tar.gz", hash = "sha256:9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed"}, -] - -[package.dependencies] -typing-extensions = {version = ">=4", markers = "python_version < \"3.11\""} - -[package.extras] -tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] - [[package]] name = "attrs" version = "23.1.0" @@ -557,22 +540,21 @@ typing = ["typing-extensions (>=4.8)"] [[package]] name = "flask" -version = "3.0.0" +version = "2.3.3" description = "A simple framework for building complex web applications." optional = false python-versions = ">=3.8" files = [ - {file = "flask-3.0.0-py3-none-any.whl", hash = "sha256:21128f47e4e3b9d597a3e8521a329bf56909b690fcc3fa3e477725aa81367638"}, - {file = "flask-3.0.0.tar.gz", hash = "sha256:cfadcdb638b609361d29ec22360d6070a77d7463dcb3ab08d2c2f2f168845f58"}, + {file = "flask-2.3.3-py3-none-any.whl", hash = "sha256:f69fcd559dc907ed196ab9df0e48471709175e696d6e698dd4dbe940f96ce66b"}, + {file = "flask-2.3.3.tar.gz", hash = "sha256:09c347a92aa7ff4a8e7f3206795f30d826654baf38b873d0744cd571ca609efc"}, ] [package.dependencies] -asgiref = {version = ">=3.2", optional = true, markers = "extra == \"async\""} blinker = ">=1.6.2" click = ">=8.1.3" itsdangerous = ">=2.1.2" Jinja2 = ">=3.1.2" -Werkzeug = ">=3.0.0" +Werkzeug = ">=2.3.7" [package.extras] async = ["asgiref (>=3.2)"] @@ -2028,4 +2010,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "63557a69d9c43930aeb88e2318fcbbdfecc50483c6b556256413f3a68f2f3d00" +content-hash = "abdc6a590a20da8ba3fa2af2084141f676f9003583d33df4dc255f0cf1839d18" diff --git a/pyproject.toml b/pyproject.toml index 5deb1d3..3465deb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ packages = [{ include = "app" }] [tool.poetry.dependencies] python = "^3.10" supabase = "^2.0.1" -flask = {extras = ["async"], version = "^3.0.0"} +flask = "^2.3.3" flask-wtf = "^1.1.1" email-validator = "^2.0.0.post2" poetry-dotenv-plugin = "^0.2.0"