Skip to content
Open
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 backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ dev = [
"inotify>=0.2.10",
"poethepoet>=0.33.1",
"debugpy>=1.8.14",
"pytest>=8.3.5",
"pytest>=9.0.3",
Comment thread
jaseemjaskp marked this conversation as resolved.
"responses>=0.25.7",
"psutil>=7.0.0",
]
test = ["pytest>=8.0.1", "pytest-dotenv==0.5.2"]
test = ["pytest>=9.0.3", "pytest-dotenv==0.5.2"]
Comment thread
jaseemjaskp marked this conversation as resolved.
deploy = [
"gunicorn~=23.0", # For serving the application
# Keep versions empty and let uv decide version
Expand Down
105 changes: 54 additions & 51 deletions backend/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion platform-service/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ unstract-core = { path = "../unstract/core", editable = true }
unstract-sdk1 = { path = "../unstract/sdk1", editable = true }

[dependency-groups]
test = ["pytest>=8.0.1"]
test = ["pytest>=9.0.3"]
deploy = [
"gunicorn[gevent]~=23.0",
# OpenTelemetry for tracing and profiling
Expand Down
1,570 changes: 787 additions & 783 deletions platform-service/uv.lock

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions prompt-service/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"

dependencies = [
"peewee~=3.16",
"nltk~=3.8",
"nltk~=3.9",
"flask~=3.0",
"llama-index>=0.14.13",
"python-dotenv==1.0.1",
Expand All @@ -28,8 +28,8 @@ unstract-sdk1 = { path = "../unstract/sdk1", editable = true }

[dependency-groups]
test = [
"pytest~=8.0.1",
"pytest-asyncio>=0.23.0",
"pytest>=9.0.3",
"pytest-asyncio>=0.24.0",
"pytest-dotenv==0.5.2",
Comment thread
jaseemjaskp marked this conversation as resolved.
"pytest-mock~=3.14.0",
"pytest-md-report>=0.6.2",
Expand All @@ -51,6 +51,9 @@ build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/unstract"]

[tool.pytest.ini_options]
asyncio_mode = "strict"

[tool.poe]
envfile = ".env"

Expand Down
135 changes: 75 additions & 60 deletions prompt-service/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dev = [
"pre-commit~=3.6.2",
"yamllint>=1.35.1",
"ruff<1.0.0,>=0.2.2",
"pytest>=8.0.1",
"pytest>=9.0.3",
"pycln>=2.6.0",
"types-PyMySQL~=1.1.0.1",
"types-pyOpenSSL~=24.0.0.20240311",
Expand Down
4 changes: 2 additions & 2 deletions runner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = { text = "MIT" }
dependencies = [
"docker==6.1.3",
"flask~=3.1.0",
"python-dotenv>=1.0.0",
"python-dotenv>=1.2.2",
"redis~=5.2.1",
"unstract-core[flask]",
"unstract-flags",
Expand All @@ -19,7 +19,7 @@ dependencies = [
[dependency-groups]
dev = ["unstract-core[flask]", "poethepoet>=0.33.1", "debugpy>=1.8.14"]
test = [
"pytest>=8.2.2",
"pytest>=9.0.3",
"pytest-mock>=3.14.0",
"pytest-cov>=5.0.0",
"pytest-md-report>=0.6.2",
Expand Down
36 changes: 18 additions & 18 deletions runner/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tool-sidecar/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
license = {text = "MIT"}
dependencies = [
"redis>=4.5.0",
"python-dotenv>=1.0.0",
"python-dotenv>=1.2.2",
"python-json-logger>=2.0.0",
"unstract-core"
]
Expand Down
Loading