Skip to content

Commit 51a3b8b

Browse files
committed
Fixed sqlite installing issues
1 parent 03b277a commit 51a3b8b

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,9 @@ src/data/*.db
9797
# Test artifacts
9898
.coverage
9999
.pytest_cache/
100-
test-results/
100+
test-results/
101+
102+
# Python Cache
103+
src/__pycache__/
104+
src/utils/__pycache__/
105+

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ g4f
77
Werkzeug>=3.0.3
88
aiohttp_socks
99
nodriver
10-
pysqlite3
1110
python-multipart
1211
uvicorn
13-
fastapi
12+
fastapi

src/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ curl_cffi>=0.5.0
1212
auth>=0.5.0
1313

1414
# Database
15-
pysqlite3>=0.4.0
15+
#pysqlite3>=0.4.0
1616

1717
# File handling
1818
python-multipart>=0.0.5
@@ -26,4 +26,4 @@ fastapi>=0.95.0
2626

2727
# Development and testing (optional)
2828
pytest>=7.0.0
29-
pytest-asyncio>=0.21.0
29+
pytest-asyncio>=0.21.0

0 commit comments

Comments
 (0)