Skip to content

Commit

Permalink
Remove 3.10 from pipelines and update dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Christdej committed May 14, 2024
1 parent ffe9868 commit d2518ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim AS builder
FROM python:3.11-slim AS builder

WORKDIR /app
RUN apt-get update
Expand All @@ -15,7 +15,7 @@ RUN pip install .
# Install the base isar-robot package
RUN pip install isar-robot

FROM python:3.10-slim
FROM python:3.11-slim
WORKDIR /app
COPY --from=builder /opt/venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@
"sphinx",
]
},
python_requires=">=3.10",
python_requires=">=3.11",
)

0 comments on commit d2518ba

Please sign in to comment.