Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v5

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: check-toml

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.9.5
rev: v0.11.2
hooks:
- id: ruff
args:
Expand All @@ -20,7 +20,7 @@ repos:
- id: ruff-format

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.5.29
rev: 0.6.10
hooks:
- id: uv-lock
- id: uv-export
Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ dependencies = [
"path==17.0.0",
"psutil>=6.0.0",
"pwdlib>=0.2.1",
"pydantic>=2.10.6",
"pydantic>=2.11.0",
"pydantic-settings>=2.0.0",
"python-jose>=3.3.0",
"python-socketio>=5.12.0",
"redis[hiredis]>=5.2.0",
"rtoml>=0.12.0",
"sqlalchemy-crud-plus==1.6.0",
"sqlalchemy[asyncio]>=2.0.30",
"sqlalchemy[asyncio]>=2.0.40",
"user-agents==2.2.0",
]

Expand All @@ -57,12 +57,11 @@ dev = [
"pytest-sugar>=1.0.0",
]
lint = [
"ruff>=0.9.0",
"pre-commit>=4.0.0",
]
server = [
"gunicorn==21.2.0",
"aio-pika==9.4.3",
"gunicorn>=21.2.0",
"aio-pika>=9.4.3",
"wait-for-it>=2.2.2",
]

Expand Down
32 changes: 16 additions & 16 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ aiofiles==24.1.0
alembic==1.15.1
amqp==5.3.1
annotated-types==0.7.0
anyio==4.8.0
anyio==4.9.0
asgi-correlation-id==4.3.4
asgiref==3.8.1
async-timeout==5.0.1 ; python_full_version < '3.11.3'
Expand All @@ -26,7 +26,7 @@ colorama==0.4.6 ; sys_platform == 'win32'
cryptography==44.0.2
distlib==0.3.9
dnspython==2.7.0
ecdsa==0.19.0
ecdsa==0.19.1
email-validator==2.2.0
exceptiongroup==1.2.2 ; python_full_version < '3.11'
fast-captcha==0.3.2
Expand All @@ -35,7 +35,7 @@ fastapi-cli==0.0.5
fastapi-limiter==0.1.6
fastapi-oauth20==0.0.1a2
fastapi-pagination==0.12.34
filelock==3.17.0
filelock==3.18.0
flower==2.0.1
gevent==24.11.1
greenlet==3.1.1
Expand All @@ -44,14 +44,14 @@ hiredis==3.1.0
httpcore==1.0.7
httptools==0.6.4
httpx==0.28.1
humanize==4.12.1
humanize==4.12.2
identify==2.6.9
idna==3.10
iniconfig==2.0.0
iniconfig==2.1.0
ip2loc==1.0.0
itsdangerous==2.2.0
jinja2==3.1.6
kombu==5.4.2
kombu==5.5.1
loguru==0.7.3
mako==1.3.9
markdown-it-py==3.0.0
Expand All @@ -62,47 +62,47 @@ nodeenv==1.9.1
packaging==24.2
path==17.0.0
pillow==11.1.0
platformdirs==4.3.6
platformdirs==4.3.7
pluggy==1.5.0
pre-commit==4.1.0
pre-commit==4.2.0
prometheus-client==0.21.1
prompt-toolkit==3.0.50
psutil==7.0.0
pwdlib==0.2.1
pyasn1==0.4.8
pycparser==2.22 ; platform_python_implementation != 'PyPy'
pydantic==2.10.6
pydantic-core==2.27.2
pydantic==2.11.0
pydantic-core==2.33.0
pydantic-settings==2.8.1
pygments==2.19.1
pytest==8.3.5
pytest-sugar==1.0.0
python-dateutil==2.9.0.post0
python-dotenv==1.0.1
python-dotenv==1.1.0
python-engineio==4.11.2
python-jose==3.4.0
python-multipart==0.0.20
python-socketio==5.12.1
pytz==2025.1
pytz==2025.2
pyyaml==6.0.2
redis==5.2.1
rich==13.9.4
rsa==4.9
rtoml==0.12.0
ruff==0.9.10
setuptools==76.0.0
setuptools==78.1.0
shellingham==1.5.4
simple-websocket==1.1.0
six==1.17.0
sniffio==1.3.1
sqlalchemy==2.0.38
sqlalchemy==2.0.40
sqlalchemy-crud-plus==1.6.0
starlette==0.46.1
termcolor==2.5.0
tomli==2.2.1 ; python_full_version < '3.11'
tornado==6.4.2
typer==0.15.2
typing-extensions==4.12.2
typing-extensions==4.13.0
typing-inspection==0.4.0
tzdata==2025.1
ua-parser==1.0.1
ua-parser-builtins==0.18.0.post1
Expand Down
Loading