Skip to content
Closed
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
251 changes: 152 additions & 99 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
10 changes: 5 additions & 5 deletions api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ classifiers = [
]
license = {text = "PolyForm-Noncommercial-1.0.0"}
dependencies = [
"anthropic>=1.0.0",
"cryptography>=50.0.0",
"anthropic>=1.4.0",
"cryptography>=50.0.1",
"fastapi>=0.141.1",
"groovemap-agent-tools==0.1.0",
"groovemap-runtime[neo4j,postgres]==0.1.0",
"httpx>=0.28.1",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"orjson>=3.12.0",
"psycopg[binary]>=3.3.4",
"pydantic>=2.13.4",
"psycopg[binary]>=3.3.5",
"pydantic>=2.13.5",
"pyotp>=2.10.0",
"redis[hiredis]>=8.1.0",
"slowapi>=0.1.10",
Expand Down
2 changes: 1 addition & 1 deletion brainzgraphinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion brainzgraphinator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ license = {text = "PolyForm-Noncommercial-1.0.0"}
dependencies = [
"aio-pika>=10.0.1",
"groovemap-runtime[neo4j,rabbitmq]==0.1.0",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"orjson>=3.12.0",
"structlog>=26.1.0",
]
Expand Down
2 changes: 1 addition & 1 deletion brainztableinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion brainztableinator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = [
"aio-pika>=10.0.1",
"groovemap-runtime[postgres,rabbitmq]==0.1.0",
"orjson>=3.12.0",
"psycopg[binary]>=3.3.4",
"psycopg[binary]>=3.3.5",
"structlog>=26.1.0",
]

Expand Down
2 changes: 1 addition & 1 deletion dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN npm install @tailwindcss/cli@^4 @tailwindcss/forms --save-dev && \
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
8 changes: 4 additions & 4 deletions dashboard/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ dependencies = [
"fastapi>=0.141.1",
"groovemap-runtime[neo4j,postgres,rabbitmq]==0.1.0",
"httpx>=0.28.1",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"orjson>=3.12.0",
"pika>=1.4.4",
"prometheus-client>=0.26.0",
"psycopg[binary]>=3.3.4",
"pydantic>=2.13.4",
"psycopg[binary]>=3.3.5",
"pydantic>=2.13.5",
"python-multipart>=0.0.32",
"structlog>=26.1.0",
"uvicorn[standard]>=0.52.4",
"websockets>=17.0.1",
"websockets>=17.1",
]

[project.scripts]
Expand Down
4 changes: 2 additions & 2 deletions docs/dockerfile-standards.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down Expand Up @@ -104,7 +104,7 @@ WORKDIR /app
COPY --from=builder --chown=discogsography:discogsography /app /app

# Install uv for runtime
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Create startup script
# [Startup script section - see below]
Expand Down
2 changes: 1 addition & 1 deletion explore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN npm install @tailwindcss/cli@^4 @tailwindcss/forms --save-dev && \
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion explore/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
"groovemap-runtime==0.1.0",
"httpx>=0.28.1",
"orjson>=3.12.0",
"pydantic>=2.13.4",
"pydantic>=2.13.5",
"python-multipart>=0.0.32",
"structlog>=26.1.0",
"uvicorn[standard]>=0.52.4",
Expand Down
2 changes: 1 addition & 1 deletion graphinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion graphinator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
"aio-pika>=10.0.1",
"dict-hash>=1.3.7",
"groovemap-runtime[neo4j,rabbitmq]==0.1.0",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"orjson>=3.12.0",
"pika>=1.4.4",
"structlog>=26.1.0",
Expand Down
2 changes: 1 addition & 1 deletion insights/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion mcp-server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ license = {text = "PolyForm-Noncommercial-1.0.0"}
dependencies = [
"groovemap-agent-tools==0.1.0",
"httpx>=0.28.1",
"mcp[cli]>=2.0.0",
"mcp[cli]>=2.1.1",
"structlog>=26.1.0",
]

Expand Down
54 changes: 27 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,61 +24,61 @@ dependencies = [
"groovemap-agent-tools==0.1.0",
"groovemap-runtime[all]==0.1.0",
"multidict>=6.7.1",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"orjson>=3.12.0",
"pika>=1.4.4",
"psycopg[binary]>=3.3.4",
"psycopg[binary]>=3.3.5",
"redis[hiredis]>=8.1.0",
"structlog>=26.1.0",
"tqdm>=4.70.0",
]

[project.optional-dependencies]
api = [
"anthropic>=1.0.0",
"cryptography>=50.0.0",
"anthropic>=1.4.0",
"cryptography>=50.0.1",
"defusedxml>=0.7.1",
"fastapi>=0.141.1",
"httpx>=0.28.1",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"orjson>=3.12.0",
"psycopg[binary]>=3.3.4",
"pydantic>=2.13.4",
"psycopg[binary]>=3.3.5",
"pydantic>=2.13.5",
"pyotp>=2.10.0",
"pyyaml>=6.0.3",
"redis[hiredis]>=8.1.0",
"slowapi>=0.1.10",
"sse-starlette>=3.4.8",
"sse-starlette>=3.4.11",
"structlog>=26.1.0",
"uvicorn[standard]>=0.52.4",
]
dashboard = [
"fastapi>=0.141.1",
"httpx>=0.28.1",
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
"prometheus-client>=0.26.0",
"psycopg[binary]>=3.3.4",
"pydantic>=2.13.4",
"psycopg[binary]>=3.3.5",
"pydantic>=2.13.5",
"python-multipart>=0.0.32",
"uvicorn[standard]>=0.52.4",
"websockets>=17.0.1",
"websockets>=17.1",
]
brainzgraphinator = [
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
]
graphinator = [
"neo4j-rust-ext>=6.2.0.0",
"neo4j-rust-ext>=6.3.0.0",
]
insights = [
"fastapi>=0.141.1",
"httpx>=0.28.1",
"uvicorn[standard]>=0.52.4",
]
tableinator = [
"psycopg[binary]>=3.3.4",
"psycopg[binary]>=3.3.5",
]
brainztableinator = [
"psycopg[binary]>=3.3.4",
"psycopg[binary]>=3.3.5",
]
dev = [
"bandit>=1.9.4",
Expand All @@ -90,11 +90,11 @@ dev = [
"pytest-playwright>=0.9.0",
"pytest-timeout>=2.4.0",
"pre-commit>=4.6.2",
"ruff>=0.16.4",
"ruff>=0.16.6",
"types-defusedxml>=0.7.0.20260504",
"types-psutil>=7.2.2.20260518",
"types-psutil>=7.2.2.20260827",
"types-pyyaml>=6.0.12.20260815",
"types-tqdm>=4.70.0.20260805",
"types-tqdm>=4.70.0.20260827",
]
utilities = [
"psutil>=7.2.2",
Expand All @@ -104,18 +104,18 @@ explore = [
"fastapi>=0.141.1",
"httpx>=0.28.1",
"orjson>=3.12.0",
"pydantic>=2.13.4",
"pydantic>=2.13.5",
"python-multipart>=0.0.32",
"structlog>=26.1.0",
"uvicorn[standard]>=0.52.4",
]
schema-init = [
"neo4j-rust-ext>=6.2.0.0",
"psycopg[binary]>=3.3.4",
"neo4j-rust-ext>=6.3.0.0",
"psycopg[binary]>=3.3.5",
"structlog>=26.1.0",
]
mcp-server = [
"mcp[cli]>=2.0.0",
"mcp[cli]>=2.1.1",
"structlog>=26.1.0",
]
all = [
Expand Down Expand Up @@ -261,17 +261,17 @@ dev = [
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"pytest-cov>=7.1.0",
"ruff>=0.16.4",
"types-tqdm>=4.70.0.20260805",
"ruff>=0.16.6",
"types-tqdm>=4.70.0.20260827",
"types-xmltodict>=1.0.1.20260518",
"types-psutil>=7.2.2.20260518",
"types-psutil>=7.2.2.20260827",
"pytest-timeout>=2.4.0",
"mdformat>=1.0.0",
"mdformat-gfm>=1.0.0",
# "mdformat-tables>=1.0.0", # Disabled: requires mdformat<0.8.0
"pytest-xdist>=3.8.0",
"fakeredis>=2.37.1",
"hypothesis>=6.165.10",
"hypothesis>=6.167.1",
"pillow>=12.3.0",
"respx>=0.23.1",
]
Expand Down
2 changes: 1 addition & 1 deletion schema-init/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
4 changes: 2 additions & 2 deletions schema-init/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ classifiers = [
license = {text = "PolyForm-Noncommercial-1.0.0"}
dependencies = [
"groovemap-runtime[neo4j,postgres]==0.1.0",
"neo4j-rust-ext>=6.2.0.0",
"psycopg[binary]>=3.3.4",
"neo4j-rust-ext>=6.3.0.0",
"psycopg[binary]>=3.3.5",
"structlog>=26.1.0",
]

Expand Down
2 changes: 1 addition & 1 deletion tableinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.12.5 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.12.10 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion tableinator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"groovemap-runtime[postgres,rabbitmq]==0.1.0",
"orjson>=3.12.0",
"pika>=1.4.4",
"psycopg[binary]>=3.3.4",
"psycopg[binary]>=3.3.5",
"structlog>=26.1.0",
]

Expand Down
Loading