From a3cc8979481f614b62ea44512b52578984b114f3 Mon Sep 17 00:00:00 2001 From: Lukas Winkler Date: Wed, 25 Dec 2019 20:04:46 +0100 Subject: [PATCH] fix sentry and flask --- poetry.lock | 21 ++++++++++++++++++++- pyproject.toml | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 0aecaa0..8e69e92 100644 --- a/poetry.lock +++ b/poetry.lock @@ -13,6 +13,14 @@ soupsieve = ">=1.2" html5lib = ["html5lib"] lxml = ["lxml"] +[[package]] +category = "main" +description = "Fast, simple object-to-object and broadcast signaling" +name = "blinker" +optional = false +python-versions = "*" +version = "1.4" + [[package]] category = "main" description = "Python package for providing Mozilla's CA Bundle." @@ -179,6 +187,14 @@ version = "0.13.5" certifi = "*" urllib3 = ">=1.10.0" +[package.dependencies.blinker] +optional = true +version = ">=1.1" + +[package.dependencies.flask] +optional = true +version = ">=0.11" + [package.extras] aiohttp = ["aiohttp (>=3.5)"] beam = ["beam (>=2.12)"] @@ -238,7 +254,7 @@ termcolor = ["termcolor"] watchdog = ["watchdog"] [metadata] -content-hash = "a1c4dda658f3962566791b78e35334129bcf1a9edb5e6d755b4339212f6c4e75" +content-hash = "0e4e11ad1b3fb08d14479d937a60592bb23e0821c76fc042dbd95122d247dff4" python-versions = ">=3.7" [metadata.files] @@ -247,6 +263,9 @@ beautifulsoup4 = [ {file = "beautifulsoup4-4.8.2-py3-none-any.whl", hash = "sha256:9fbb4d6e48ecd30bcacc5b63b94088192dcda178513b2ae3c394229f8911b887"}, {file = "beautifulsoup4-4.8.2.tar.gz", hash = "sha256:05fd825eb01c290877657a56df4c6e4c311b3965bda790c613a3d6fb01a5462a"}, ] +blinker = [ + {file = "blinker-1.4.tar.gz", hash = "sha256:471aee25f3992bd325afa3772f1063dbdbbca947a041b8b89466dc00d606f8b6"}, +] certifi = [ {file = "certifi-2019.11.28-py2.py3-none-any.whl", hash = "sha256:017c25db2a153ce562900032d5bc68e9f191e44e9a0f762f373977de9df1fbb3"}, {file = "certifi-2019.11.28.tar.gz", hash = "sha256:25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f"}, diff --git a/pyproject.toml b/pyproject.toml index 10de668..7ac97e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ python = ">=3.7" requests = "^2.22.0" Flask = "^1.1.1" Flask-Caching = "^1.8.0" -sentry-sdk = "^0.13.5" +sentry-sdk = {extras = ["flask"], version = "^0.13.5"} spotipy = "^2.4.4" peewee = "^3.13.1" beautifulsoup4 = "^4.8.2"