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
4 changes: 2 additions & 2 deletions apps/api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "knowhere-api-app"
version = "0.1.0"
description = "Knowhere API service"
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11"
dependencies = [
"knowhere-shared",
"fastapi==0.135.1",
Expand All @@ -13,7 +13,7 @@ dependencies = [
"redis==5.3.1",
"celery==5.4.0",
"stripe==13.0.1",
"pydantic==2.11.7",
"pydantic==2.13.4",
"PyJWT==2.12.0",
"qstash==3.2.0",
"httpx==0.28.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/worker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "knowhere-worker-app"
version = "0.1.0"
description = "Knowhere Worker service"
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11"
dependencies = [
"knowhere-shared",
"numpy==2.2.6",
Expand Down
16 changes: 7 additions & 9 deletions apps/worker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,9 @@ argon2-cffi-bindings==25.1.0
# via argon2-cffi
asgiref==3.11.1
# via opentelemetry-instrumentation-asgi
async-timeout==5.0.1 ; python_full_version < '3.12'
# via
# asyncpg
# redis
asyncpg==0.29.0
async-timeout==5.0.1 ; python_full_version < '3.11.3'
# via redis
asyncpg==0.31.0
# via knowhere-shared
attrs==26.1.0
# via aiohttp
Expand Down Expand Up @@ -333,24 +331,24 @@ psycogreen==1.0.2
# via
# knowhere-shared
# knowhere-worker-app
psycopg2-binary==2.9.9
psycopg2-binary==2.9.12
# via knowhere-shared
pwdlib==0.3.0
# via fastapi-users
pycparser==3.0 ; implementation_name != 'PyPy'
# via cffi
pycryptodome==3.23.0
# via oss2
pydantic==2.11.7
pydantic==2.13.4
# via
# fastapi
# knowhere-shared
# openai
# pptx2md
# pydantic-settings
pydantic-core==2.33.2
pydantic-core==2.46.4
# via pydantic
pydantic-settings==2.10.1
pydantic-settings==2.14.1
# via knowhere-shared
pygments==2.20.0
# via
Expand Down
12 changes: 6 additions & 6 deletions packages/shared-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ build-backend = "setuptools.build_meta"
name = "knowhere-shared"
version = "0.1.0"
description = "Knowhere Shared Python Package - Core Infrastructure: Models, Config, Database, Redis Services, Storage Adapters, and Utils"
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11"
dependencies = [
# Database
"sqlalchemy==2.0.42",
"sqlalchemy[asyncio]",
"asyncpg==0.29.0",
"psycopg2-binary==2.9.9",
"asyncpg==0.31.0",
"psycopg2-binary==2.9.12",
"alembic==1.13.1",
"sqlalchemy-utils==0.41.1",
"pgvector==0.2.4",
Expand All @@ -28,10 +28,10 @@ dependencies = [
"celery-redbeat==2.2.0",

# Data validation
"pydantic==2.11.7",
"pydantic-settings==2.10.1",
"pydantic==2.13.4",
"pydantic-settings==2.14.1",
"python-dotenv==1.2.2",
"pydantic[email]==2.11.7",
"pydantic[email]==2.13.4",

# Auth and user model support
"fastapi-users[sqlalchemy]==15.0.5",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "knowhere-api"
version = "0.1.0"
description = "Knowhere API publication workspace"
readme = "README.md"
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11"
license = { file = "LICENSE" }

[dependency-groups]
Expand Down
Loading
Loading