From 1f7cbec5a83ed43c95ed441740e257ae845ee3f5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 16:45:22 +0000 Subject: [PATCH 1/6] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=F0=9F=9B=A0=EF=B8=8F(?= =?UTF-8?q?deps):=20update=20dependency=20iamlistening=20to=20v4.2.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 013e11198..03c738bed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ apprise = "^1.5.0" asyncz = ">=0.3.1" nicegui = "^1.3.15" ping3 = "^4.0.4" -iamlistening = "4.2.7" +iamlistening = "4.2.8" findmyorder = "1.8.0" dxsp = "5.2.5" cefi = "3.1.4" From bd271453b984c911accedbabbfc187e783a1c3fc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Mon, 9 Oct 2023 16:48:34 +0000 Subject: [PATCH 2/6] Update Requirements --- .requirements/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.requirements/requirements.txt b/.requirements/requirements.txt index c7b1dfb11..7ff926de3 100644 --- a/.requirements/requirements.txt +++ b/.requirements/requirements.txt @@ -62,7 +62,7 @@ httpcore==0.17.3 ; python_version >= "3.10" and python_version < "4.0" httptools==0.6.0 ; python_version >= "3.10" and python_version < "4.0" httpx==0.24.1 ; python_version >= "3.10" and python_version < "4.0" hyperframe==6.0.1 ; python_version >= "3.10" and python_version < "4.0" -iamlistening==4.2.7 ; python_version >= "3.10" and python_version < "4.0" +iamlistening==4.2.8 ; python_version >= "3.10" and python_version < "4.0" idna==3.4 ; python_version >= "3.10" and python_version < "4.0" iso8601==2.1.0 ; python_version >= "3.10" and python_version < "4.0" itsdangerous==2.1.2 ; python_version >= "3.10" and python_version < "4.0" @@ -148,7 +148,7 @@ telethon==1.30.3 ; python_version >= "3.10" and python_version < "4.0" toml==0.10.2 ; python_version >= "3.10" and python_version < "4.0" toolz==0.12.0 ; python_version >= "3.10" and python_version < "4" and (implementation_name == "pypy" or implementation_name == "cpython") tradingview-ta==3.3.0 ; python_version >= "3.10" and python_version < "4.0" -twitchio==2.8.1 ; python_version >= "3.10" and python_version < "4.0" +twitchio==2.8.2 ; python_version >= "3.10" and python_version < "4.0" typing-extensions==4.8.0 ; python_version >= "3.10" and python_version < "4.0" tzdata==2023.3 ; python_version >= "3.10" and python_version < "4.0" tzlocal==4.3.1 ; python_version >= "3.10" and python_version < "4.0" From f3d5944bd6b69f46265b0597268fcdd73cfe706a Mon Sep 17 00:00:00 2001 From: mraniki <8766259+mraniki@users.noreply.github.com> Date: Tue, 10 Oct 2023 17:34:40 +0200 Subject: [PATCH 3/6] =?UTF-8?q?=F0=9F=94=8A=20for=20ignore=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tt/plugins/default_plugins/cex_exchange_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tt/plugins/default_plugins/cex_exchange_plugin.py b/tt/plugins/default_plugins/cex_exchange_plugin.py index 6b4e05357..538361b05 100644 --- a/tt/plugins/default_plugins/cex_exchange_plugin.py +++ b/tt/plugins/default_plugins/cex_exchange_plugin.py @@ -3,7 +3,7 @@ from cefi import CexTrader from findmyorder import FindMyOrder -from tt.config import settings +from tt.config import logger, settings from tt.plugins.plugin_manager import BasePlugin from tt.utils import send_notification @@ -60,7 +60,7 @@ async def handle_message(self, msg): """ if not self.should_handle(msg): return - + logger.debug("settings.bot_ignore: %s", settings.bot_ignore) if not msg.startswith(settings.bot_ignore): if await self.fmo.search(msg): order = await self.fmo.get_order(msg) From 3c682f54cc213501cdc24b7a2955c92d19901f80 Mon Sep 17 00:00:00 2001 From: mraniki <8766259+mraniki@users.noreply.github.com> Date: Tue, 10 Oct 2023 17:57:18 +0200 Subject: [PATCH 4/6] Update pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 013e11198..9497f3375 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,10 +51,10 @@ nicegui = "^1.3.15" ping3 = "^4.0.4" iamlistening = "4.2.7" findmyorder = "1.8.0" -dxsp = "5.2.5" +dxsp = "5.2.6" cefi = "3.1.4" talkytrend = "1.15.1" -myllm = "3.1.16" +myllm = "3.1.17" [tool.poetry.group.dev.dependencies] From 88b82413b7007c23a64af2f48243375a9568cde2 Mon Sep 17 00:00:00 2001 From: mraniki Date: Tue, 10 Oct 2023 15:58:21 +0000 Subject: [PATCH 5/6] Update Requirements --- .requirements/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.requirements/requirements.txt b/.requirements/requirements.txt index c7b1dfb11..4c9d59615 100644 --- a/.requirements/requirements.txt +++ b/.requirements/requirements.txt @@ -88,7 +88,7 @@ myllm==3.1.16 ; python_version >= "3.10" and python_version < "4.0" nicegui==1.3.16 ; python_version >= "3.10" and python_version < "4.0" numpy==1.25.2 ; python_version >= "3.10" and python_version < "4.0" oauthlib==3.2.2 ; python_version >= "3.10" and python_version < "4.0" -orjson==3.9.7 ; python_version >= "3.10" and python_version < "4.0" and (platform_machine != "i386" and platform_machine != "i686") +orjson==3.9.8 ; python_version >= "3.10" and python_version < "4.0" and (platform_machine != "i386" and platform_machine != "i686") packaging==23.2 ; python_version >= "3.10" and python_version < "4.0" pandas==2.1.1 ; python_version >= "3.10" and python_version < "4.0" parsimonious==0.9.0 ; python_version >= "3.10" and python_version < "4" From abe7c83ed917427e41319572c23b4e98a4a94877 Mon Sep 17 00:00:00 2001 From: mraniki Date: Tue, 10 Oct 2023 16:39:52 +0000 Subject: [PATCH 6/6] Update Requirements --- .requirements/requirements.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.requirements/requirements.txt b/.requirements/requirements.txt index cb724a8d1..7c59d0158 100644 --- a/.requirements/requirements.txt +++ b/.requirements/requirements.txt @@ -17,6 +17,8 @@ bidict==0.22.1 ; python_version >= "3.10" and python_version < "4.0" bitarray==2.8.2 ; python_version >= "3.10" and python_version < "4" blinker==1.6.3 ; python_version >= "3.10" and python_version < "4.0" blurhash==1.1.4 ; python_version >= "3.10" and python_version < "4.0" +brotli==1.1.0 ; platform_python_implementation == "CPython" and python_version >= "3.10" and python_version < "4.0" +brotlicffi==1.1.0.0 ; platform_python_implementation != "CPython" and python_version >= "3.10" and python_version < "4.0" browser-cookie3==0.19.1 ; python_version >= "3.10" and python_version < "4.0" ccxt==4.1.1 ; python_version >= "3.10" and python_version < "4.0" cefi==3.1.4 ; python_version >= "3.10" and python_version < "4.0" @@ -29,7 +31,8 @@ cryptography==41.0.4 ; python_version >= "3.10" and python_version < "4.0" curl-cffi==0.5.7 ; python_version >= "3.10" and python_version < "4.0" cytoolz==0.12.2 ; python_version >= "3.10" and python_version < "4" and implementation_name == "cpython" decorator==5.1.1 ; python_version >= "3.10" and python_version < "4.0" -dxsp==5.2.5 ; python_version >= "3.10" and python_version < "4.0" +duckduckgo-search==3.8.5 ; python_version >= "3.10" and python_version < "4.0" +dxsp==5.2.6 ; python_version >= "3.10" and python_version < "4.0" dynaconf==3.2.3 ; python_version >= "3.10" and python_version < "4.0" eth-abi==4.2.1 ; python_version >= "3.10" and python_version < "4" eth-account==0.9.0 ; python_version >= "3.10" and python_version < "4" @@ -49,7 +52,7 @@ flask==3.0.0 ; python_version >= "3.10" and python_version < "4.0" frozendict==2.3.8 ; python_version >= "3.10" and python_version < "4.0" frozenlist==1.4.0 ; python_version >= "3.10" and python_version < "4.0" future==0.18.3 ; python_version >= "3.10" and python_version < "4.0" -g4f==0.1.5.5 ; python_version >= "3.10" and python_version < "4.0" +g4f==0.1.5.8 ; python_version >= "3.10" and python_version < "4.0" gql==3.4.1 ; python_version >= "3.10" and python_version < "4.0" graphql-core==3.2.3 ; python_version >= "3.10" and python_version < "4" guilded-py==1.11.0 ; python_version >= "3.10" and python_version < "4.0" @@ -61,6 +64,7 @@ html5lib==1.1 ; python_version >= "3.10" and python_version < "4.0" httpcore==0.17.3 ; python_version >= "3.10" and python_version < "4.0" httptools==0.6.0 ; python_version >= "3.10" and python_version < "4.0" httpx==0.24.1 ; python_version >= "3.10" and python_version < "4.0" +httpx[brotli,http2,socks]==0.24.1 ; python_version >= "3.10" and python_version < "4.0" hyperframe==6.0.1 ; python_version >= "3.10" and python_version < "4.0" iamlistening==4.2.8 ; python_version >= "3.10" and python_version < "4.0" idna==3.4 ; python_version >= "3.10" and python_version < "4.0" @@ -84,7 +88,7 @@ mastodon-py==1.8.1 ; python_version >= "3.10" and python_version < "4.0" matrix-nio==0.20.2 ; python_version >= "3.10" and python_version < "4.0" multidict==6.0.4 ; python_version >= "3.10" and python_version < "4.0" multitasking==0.0.11 ; python_version >= "3.10" and python_version < "4.0" -myllm==3.1.16 ; python_version >= "3.10" and python_version < "4.0" +myllm==3.1.17 ; python_version >= "3.10" and python_version < "4.0" nicegui==1.3.16 ; python_version >= "3.10" and python_version < "4.0" numpy==1.25.2 ; python_version >= "3.10" and python_version < "4.0" oauthlib==3.2.2 ; python_version >= "3.10" and python_version < "4.0" @@ -141,6 +145,7 @@ simple-websocket==1.0.0 ; python_version >= "3.10" and python_version < "4.0" simplematrixbotlib==2.10.1 ; python_version >= "3.10" and python_version < "4.0" six==1.16.0 ; python_version >= "3.10" and python_version < "4.0" sniffio==1.3.0 ; python_version >= "3.10" and python_version < "4.0" +socksio==1.0.0 ; python_version >= "3.10" and python_version < "4.0" soupsieve==2.5 ; python_version >= "3.10" and python_version < "4.0" starlette==0.27.0 ; python_version >= "3.10" and python_version < "4.0" talkytrend==1.15.1 ; python_version >= "3.10" and python_version < "4.0"