Skip to content

Commit 287fd97

Browse files
committed
Update requirements.txt
1 parent a487588 commit 287fd97

File tree

2 files changed

+41
-63
lines changed

2 files changed

+41
-63
lines changed

app/__init__.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
import logging
22

3-
from .dependencies import (
4-
SessionDep,
5-
get_app_settings,
6-
get_db_session,
7-
lifespan_func,
8-
)
3+
from .dependencies import SessionDep, get_app_settings, get_db_session, lifespan_func
94

105
logger = logging.getLogger("uvicorn.error")

requirements.txt

Lines changed: 40 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,49 @@
11
# Run `pip install -r requirements.txt` to install required packages
2-
# Comment out uvloop if using a non-Unix system (e.g. Windows)
2+
# uvloop is an optional dependency for improved performance over asyncio, you may
3+
# uncomment it if using MacOS or any POSIX-compliant OS.
34

4-
aiohappyeyeballs==2.4.6
5-
aiohttp==3.11.12
6-
aiosignal==1.3.2
7-
alembic==1.15.2
85
annotated-types==0.7.0
9-
anyio==4.8.0
10-
APScheduler==3.11.0
11-
attrs==25.1.0
12-
beautifulsoup4==4.13.3
13-
black==25.1.0
14-
certifi==2024.12.14
15-
click==8.1.8
6+
anyio==4.11.0
7+
certifi==2025.10.5
8+
click==8.3.0
169
colorama==0.4.6
17-
dnspython==2.7.0
18-
email_validator==2.2.0
19-
fastapi==0.115.6
20-
fastapi-cli==0.0.7
21-
frozenlist==1.5.0
22-
greenlet==3.1.1
23-
h11==0.14.0
24-
html5lib==1.1
25-
httpcore==1.0.7
26-
httptools==0.6.4
10+
dnspython==2.8.0
11+
email-validator==2.3.0
12+
fastapi==0.119.1
13+
fastapi-cli==0.0.14
14+
fastapi-cloud-cli==0.3.1
15+
greenlet==3.2.4
16+
h11==0.16.0
17+
httpcore==1.0.9
18+
httptools==0.7.1
2719
httpx==0.28.1
28-
idna==3.10
29-
Jinja2==3.1.5
30-
lxml==5.3.1
31-
Mako==1.3.9
32-
markdown-it-py==3.0.0
33-
MarkupSafe==3.0.2
20+
idna==3.11
21+
Jinja2==3.1.6
22+
markdown-it-py==4.0.0
23+
MarkupSafe==3.0.3
3424
mdurl==0.1.2
35-
multidict==6.1.0
36-
mypy-extensions==1.0.0
37-
mysql-connector-python==9.2.0
38-
packaging==24.2
39-
pathspec==0.12.1
40-
platformdirs==4.3.6
41-
propcache==0.2.1
42-
pydantic==2.10.5
43-
pydantic-settings==2.7.1
44-
pydantic_core==2.27.2
45-
Pygments==2.19.1
46-
python-dotenv==1.0.1
25+
mysql-connector-python==9.5.0
26+
pydantic==2.12.3
27+
pydantic-settings==2.11.0
28+
pydantic_core==2.41.4
29+
Pygments==2.19.2
30+
python-dotenv==1.1.1
4731
python-multipart==0.0.20
48-
PyYAML==6.0.2
49-
rich==13.9.4
50-
rich-toolkit==0.13.2
32+
PyYAML==6.0.3
33+
rich==14.2.0
34+
rich-toolkit==0.15.1
35+
rignore==0.7.1
36+
sentry-sdk==2.42.1
5137
shellingham==1.5.4
52-
six==1.17.0
5338
sniffio==1.3.1
54-
soupsieve==2.6
55-
SQLAlchemy==2.0.37
56-
sqlmodel==0.0.22
57-
starlette==0.41.3
58-
typer==0.15.1
59-
typing_extensions==4.12.2
60-
tzlocal==5.3.1
61-
uvicorn==0.34.0
62-
uvloop==0.21.0
63-
watchfiles==1.0.4
64-
webencodings==0.5.1
65-
websockets==14.2
66-
yarl==1.18.3
39+
SQLAlchemy==2.0.44
40+
sqlmodel==0.0.27
41+
starlette==0.48.0
42+
typer==0.20.0
43+
typing-inspection==0.4.2
44+
typing_extensions==4.15.0
45+
urllib3==2.5.0
46+
# uvloop==0.22.1
47+
uvicorn==0.38.0
48+
watchfiles==1.1.1
49+
websockets==15.0.1

0 commit comments

Comments
 (0)