chore: update poetry, disable nix workflow and python package updates (#3213)

This commit is contained in:
dni ⚡
2025-06-24 18:09:48 +02:00
committed by GitHub
parent 063aa4fd06
commit 55889abd88
8 changed files with 1452 additions and 1163 deletions
-11
View File
@@ -1,9 +1,7 @@
from __future__ import annotations
from dataclasses import dataclass
from typing import Callable
import bcrypt
from pydantic import BaseModel
@@ -11,15 +9,6 @@ def _do_nothing(*_):
pass
@dataclass
class SolveBugBcryptWarning:
__version__: str = getattr(bcrypt, "__version__") # noqa
# fix annoying warning in the logs
setattr(bcrypt, "__about__", SolveBugBcryptWarning()) # noqa
class CoreAppExtra:
register_new_ext_routes: Callable = _do_nothing
register_new_ratelimiter: Callable