From 089f29e95fc6b87f90885eb31b8e3460857224a8 Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Tue, 16 Jan 2024 19:15:54 -0300 Subject: [PATCH 1/3] fix(deps): missing pydantic --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7b51eca4..2ea4099f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,7 @@ python = ">=3.11,<3.13" aiohttp = { version = "^3.9.1", extras = ["speedups"] } sanic = { version = "^23.12.1", extras = ["ext"] } ujson = "^5.9.0" +pydantic = "^1.10.13" asyncstdlib = "^3.12.0" cytoolz = "^0.12.2" beautifulsoup4 = "^4.12.2" From 5f0ab26cedef27cc95eec58ea4dce00904b53289 Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Tue, 16 Jan 2024 19:17:57 -0300 Subject: [PATCH 2/3] fix(deps): fix requirements file --- requirements.txt | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3f70c2e8..4db25d28 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,9 +2,8 @@ aiodns==3.1.1 ; (sys_platform == "linux" or sys_platform == "darwin") and python aiofiles==23.2.1 ; python_version >= "3.11" and python_version < "3.13" aiohttp[speedups]==3.9.1 ; python_version >= "3.11" and python_version < "3.13" aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "3.13" -anyio==4.2.0 ; python_version >= "3.11" and python_version < "3.13" -argon2-cffi==23.1.0 ; python_version >= "3.11" and python_version < "3.13" argon2-cffi-bindings==21.2.0 ; python_version >= "3.11" and python_version < "3.13" +argon2-cffi==23.1.0 ; python_version >= "3.11" and python_version < "3.13" asyncstdlib==3.12.0 ; python_version >= "3.11" and python_version < "3.13" attrs==23.2.0 ; python_version >= "3.11" and python_version < "3.13" beautifulsoup4==4.12.2 ; python_version >= "3.11" and python_version < "3.13" @@ -29,8 +28,6 @@ limits==3.7.0 ; python_version >= "3.11" and python_version < "3.13" lxml==5.1.0 ; python_version >= "3.11" and python_version < "3.13" markupsafe==2.1.3 ; python_version >= "3.11" and python_version < "3.13" multidict==6.0.4 ; python_version >= "3.11" and python_version < "3.13" -mypy==1.8.0 ; python_version >= "3.11" and python_version < "3.13" -mypy-extensions==1.0.0 ; python_version >= "3.11" and python_version < "3.13" packaging==23.2 ; python_version >= "3.11" and python_version < "3.13" passlib==1.7.4 ; python_version >= "3.11" and python_version < "3.13" pendulum==3.0.0 ; python_version >= "3.11" and python_version < "3.13" @@ -40,19 +37,13 @@ pycparser==2.21 ; python_version >= "3.11" and python_version < "3.13" pycryptodomex==3.20.0 ; python_version >= "3.11" and python_version < "3.13" pyjwt==2.8.0 ; python_version >= "3.11" and python_version < "3.13" pyseto==1.7.7 ; python_version >= "3.11" and python_version < "3.13" -pytest==7.4.4 ; python_version >= "3.11" and python_version < "3.13" -pytest-asyncio==0.23.3 ; python_version >= "3.11" and python_version < "3.13" -pytest-cov==4.1.0 ; python_version >= "3.11" and python_version < "3.13" -pytest-emoji==0.2.0 ; python_version >= "3.11" and python_version < "3.13" -pytest-md==0.2.0 ; python_version >= "3.11" and python_version < "3.13" python-dateutil==2.8.2 ; python_version >= "3.11" and python_version < "3.13" pyyaml==6.0.1 ; python_version >= "3.11" and python_version < "3.13" -sanic==23.12.1 ; python_version >= "3.11" and python_version < "3.13" sanic-beskar==2.3.2 ; python_version >= "3.11" and python_version < "3.13" sanic-ext==23.12.0 ; python_version >= "3.11" and python_version < "3.13" sanic-limiter @ git+https://github.com/Omegastick/sanic-limiter@843e13144aa21d843ce212a7c1db31b72ce8a103 ; python_version >= "3.11" and python_version < "3.13" sanic-routing==23.12.0 ; python_version >= "3.11" and python_version < "3.13" -sanic-testing==23.12.0 ; python_version >= "3.11" and python_version < "3.13" +sanic==23.12.1 ; python_version >= "3.11" and python_version < "3.13" sanic[ext]==23.12.1 ; python_version >= "3.11" and python_version < "3.13" sentry-sdk[sanic]==1.39.2 ; python_version >= "3.11" and python_version < "3.13" six==1.16.0 ; python_version >= "3.11" and python_version < "3.13" From 7400bc4f3156b6d9ebbb2a8dad64025d69f38da8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 22:18:09 +0000 Subject: [PATCH 3/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4db25d28..0bd3ee9c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,8 +2,8 @@ aiodns==3.1.1 ; (sys_platform == "linux" or sys_platform == "darwin") and python aiofiles==23.2.1 ; python_version >= "3.11" and python_version < "3.13" aiohttp[speedups]==3.9.1 ; python_version >= "3.11" and python_version < "3.13" aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "3.13" -argon2-cffi-bindings==21.2.0 ; python_version >= "3.11" and python_version < "3.13" argon2-cffi==23.1.0 ; python_version >= "3.11" and python_version < "3.13" +argon2-cffi-bindings==21.2.0 ; python_version >= "3.11" and python_version < "3.13" asyncstdlib==3.12.0 ; python_version >= "3.11" and python_version < "3.13" attrs==23.2.0 ; python_version >= "3.11" and python_version < "3.13" beautifulsoup4==4.12.2 ; python_version >= "3.11" and python_version < "3.13" @@ -39,11 +39,11 @@ pyjwt==2.8.0 ; python_version >= "3.11" and python_version < "3.13" pyseto==1.7.7 ; python_version >= "3.11" and python_version < "3.13" python-dateutil==2.8.2 ; python_version >= "3.11" and python_version < "3.13" pyyaml==6.0.1 ; python_version >= "3.11" and python_version < "3.13" +sanic==23.12.1 ; python_version >= "3.11" and python_version < "3.13" sanic-beskar==2.3.2 ; python_version >= "3.11" and python_version < "3.13" sanic-ext==23.12.0 ; python_version >= "3.11" and python_version < "3.13" sanic-limiter @ git+https://github.com/Omegastick/sanic-limiter@843e13144aa21d843ce212a7c1db31b72ce8a103 ; python_version >= "3.11" and python_version < "3.13" sanic-routing==23.12.0 ; python_version >= "3.11" and python_version < "3.13" -sanic==23.12.1 ; python_version >= "3.11" and python_version < "3.13" sanic[ext]==23.12.1 ; python_version >= "3.11" and python_version < "3.13" sentry-sdk[sanic]==1.39.2 ; python_version >= "3.11" and python_version < "3.13" six==1.16.0 ; python_version >= "3.11" and python_version < "3.13"