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
6 changes: 2 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ jobs:

- name: Install dependencies
run: |
cd backend
uv sync --only-group lint

- name: Run lint
run: |
cd backend
source .venv/bin/activate
chmod 755 scripts/lint.sh
./scripts/lint.sh
chmod 755 backend/scripts/lint.sh
./backend/scripts/lint.sh
7 changes: 0 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,8 @@ repos:
rev: 0.5.29
hooks:
- id: uv-lock
args:
- '--directory'
- 'backend'
files: backend/uv\.lock$
- id: uv-export
args:
- '--directory'
- 'backend'
- '-o'
- 'requirements.txt'
- '--no-hashes'
files: backend/uv\.lock$
File renamed without changes.
36 changes: 18 additions & 18 deletions backend/requirements.txt → requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was autogenerated by uv via the following command:
# uv export --directory backend -o requirements.txt --no-hashes
# uv export -o requirements.txt --no-hashes
aiofiles==24.1.0
alembic==1.14.1
alembic==1.15.1
amqp==5.3.1
annotated-types==0.7.0
anyio==4.8.0
Expand All @@ -10,7 +10,7 @@ asgiref==3.8.1
async-timeout==5.0.1 ; python_full_version < '3.11.3'
asyncmy==0.2.10
asyncpg==0.30.0
bcrypt==4.2.1
bcrypt==4.3.0
bidict==0.23.1
billiard==4.2.1
celery==5.3.6
Expand All @@ -23,7 +23,7 @@ click-didyoumean==0.3.1
click-plugins==1.1.1
click-repl==0.3.0
colorama==0.4.6 ; sys_platform == 'win32'
cryptography==44.0.0
cryptography==44.0.2
distlib==0.3.9
dnspython==2.7.0
ecdsa==0.19.0
Expand All @@ -44,12 +44,12 @@ hiredis==3.1.0
httpcore==1.0.7
httptools==0.6.4
httpx==0.28.1
humanize==4.11.0
identify==2.6.6
humanize==4.12.1
identify==2.6.9
idna==3.10
iniconfig==2.0.0
itsdangerous==2.2.0
jinja2==3.1.5
jinja2==3.1.6
kombu==5.4.2
loguru==0.7.3
mako==1.3.9
Expand All @@ -61,28 +61,28 @@ nodeenv==1.9.1
orjson==3.10.15
packaging==24.2
path==17.0.0
phonenumbers==8.13.54
phonenumbers==9.0.0
pillow==11.1.0
platformdirs==4.3.6
pluggy==1.5.0
pre-commit==4.1.0
prometheus-client==0.21.1
prompt-toolkit==3.0.50
psutil==6.1.1
psutil==7.0.0
pwdlib==0.2.1
pyasn1==0.6.1
pyasn1==0.4.8
pycparser==2.22 ; platform_python_implementation != 'PyPy'
pydantic==2.10.6
pydantic-core==2.27.2
pydantic-extra-types==2.10.2
pydantic-settings==2.7.1
pydantic-settings==2.8.1
pygments==2.19.1
pytest==8.3.4
pytest==8.3.5
pytest-sugar==1.0.0
python-dateutil==2.9.0.post0
python-dotenv==1.0.1
python-engineio==4.11.2
python-jose==3.3.0
python-jose==3.4.0
python-multipart==0.0.20
python-socketio==5.12.1
pytz==2025.1
Expand All @@ -91,8 +91,8 @@ redis==5.2.1
rich==13.9.4
rsa==4.9
rtoml==0.12.0
ruff==0.9.5
setuptools==75.8.2
ruff==0.9.10
setuptools==76.0.0
shellingham==1.5.4
simple-websocket==1.1.0
six==1.17.0
Expand All @@ -103,7 +103,7 @@ starlette==0.37.2
termcolor==2.5.0
tomli==2.2.1 ; python_full_version < '3.11'
tornado==6.4.2
typer==0.15.1
typer==0.15.2
typing-extensions==4.12.2
tzdata==2025.1
ua-parser==1.0.1
Expand All @@ -113,10 +113,10 @@ user-agents==2.2.0
uvicorn==0.34.0
uvloop==0.21.0 ; platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32'
vine==5.1.0
virtualenv==20.29.1
virtualenv==20.29.3
watchfiles==1.0.4
wcwidth==0.2.13
websockets==14.2
websockets==15.0.1
win32-setctime==1.2.0 ; sys_platform == 'win32'
wsproto==1.2.0
xdbsearchip==1.0.2
Expand Down
Loading