Skip to content

Commit dcd30ca

Browse files
committed
update:update requirements.txt
1 parent 18cf3f9 commit dcd30ca

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

fcb-fronted/src/utils/timestamp-format.ts

-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ export function formatTimestamp(timestamp: string): string {
66
const hours = date.getHours().toString().padStart(2, '0');
77
const minutes = date.getMinutes().toString().padStart(2, '0');
88
const seconds = date.getSeconds().toString().padStart(2, '0');
9-
109
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
1110
}

main.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
from fastapi.staticfiles import StaticFiles
1111
from tortoise.contrib.fastapi import register_tortoise
1212

13-
from apps.base.depends import IPRateLimit
1413
from apps.base.models import KeyValue
1514
from apps.base.utils import ip_limit
1615
from apps.base.views import share_api

requirements.txt

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aioboto3==11.2.0
22
aiobotocore==2.5.0
3-
aiohttp==3.8.5
3+
aiohttp==3.9.2
44
aioitertools==0.11.0
55
aiosignal==1.3.1
66
aiosqlite==0.17.0
@@ -11,30 +11,39 @@ atlastk==0.13.2
1111
attrs==23.1.0
1212
boto3==1.26.76
1313
botocore==1.29.76
14+
certifi==2024.8.30
15+
cffi==1.17.1
1416
charset-normalizer==3.2.0
1517
click==8.1.6
18+
cryptography==43.0.1
1619
exceptiongroup==1.1.2
17-
fastapi==0.101.0
20+
fastapi==0.109.1
1821
frozenlist==1.4.0
22+
greenlet==2.0.2
1923
h11==0.14.0
20-
idna==3.4
24+
idna==3.7
2125
iso8601==1.1.0
2226
jmespath==1.0.1
27+
msal==1.31.0
2328
multidict==6.0.4
29+
Office365-REST-Python-Client==2.5.2
30+
pycparser==2.22
2431
pydantic==2.1.1
2532
pydantic_core==2.4.0
33+
PyJWT==2.9.0
2634
pypika-tortoise==0.1.6
2735
python-dateutil==2.8.2
28-
python-multipart==0.0.6
36+
python-multipart==0.0.7
2937
pytz==2023.3
38+
requests==2.32.3
3039
s3transfer==0.6.1
3140
six==1.16.0
3241
sniffio==1.3.0
33-
starlette==0.27.0
42+
SQLAlchemy==2.0.19
43+
starlette==0.35.1
3444
tortoise-orm==0.20.0
35-
typing_extensions==4.7.1
36-
urllib3==1.26.16
45+
typing_extensions==4.8.0
46+
urllib3==1.26.20
3747
uvicorn==0.23.2
3848
wrapt==1.15.0
3949
yarl==1.9.2
40-
Office365-REST-Python-Client==2.5.2

0 commit comments

Comments
 (0)