Skip to content

Commit f8d4c16

Browse files
chore(deps): update python docker tag
1 parent 48c68dc commit f8d4c16

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13
1+
3.14

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SQLite-vec builder stage - separate stage for better caching
2-
FROM python:3.13-slim AS sqlite-vec-builder
2+
FROM python:3.14-slim AS sqlite-vec-builder
33

44
# Install build dependencies for compiling sqlite-vec
55
RUN apt-get update && apt-get install -y \
@@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/var/cache/git \
2222
&& cp dist/vec0.* /sqlite-vec-dist/
2323

2424
# Main builder stage
25-
FROM python:3.13-slim AS builder
25+
FROM python:3.14-slim AS builder
2626

2727
# Create non-root user
2828
RUN groupadd --gid 1000 app && \
@@ -83,7 +83,7 @@ print('Downloading tiktoken encodings...'); \
8383
tiktoken.get_encoding('cl100k_base'); \
8484
print('Tiktoken encodings downloaded successfully')"
8585

86-
FROM python:3.13-slim AS runner
86+
FROM python:3.14-slim AS runner
8787

8888
# Create non-root user (same as builder stage)
8989
RUN groupadd --gid 1000 app && \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "mcp-optimizer"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
6-
requires-python = ">=3.13"
6+
requires-python = ">=3.14.2"
77
dependencies = [
88
"aiosqlite>=0.22.0",
99
"alembic>=1.17.2",

0 commit comments

Comments
 (0)