Skip to content

Commit e0ad289

Browse files
SmartManojenyst
andauthored
Downgraded Python version to 3.12.3 (OpenHands#2331)
Co-authored-by: Engel Nyst <[email protected]>
1 parent a9a2f10 commit e0ad289

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/run-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Test on macOS
2424
runs-on: macos-13
2525
env:
26-
INSTALL_DOCKER: "0" # Set to '0' to skip Docker installation
26+
INSTALL_DOCKER: "1" # Set to '0' to skip Docker installation
2727
strategy:
2828
matrix:
2929
python-version: ["3.11"]

containers/app/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN npm ci
1010
COPY ./frontend ./
1111
RUN npm run make-i18n && npm run build
1212

13-
FROM python:3.12-slim as backend-builder
13+
FROM python:3.12.3-slim as backend-builder
1414

1515
WORKDIR /app
1616
ENV PYTHONPATH '/app'
@@ -28,7 +28,7 @@ COPY ./pyproject.toml ./poetry.lock ./
2828
RUN touch README.md
2929
RUN poetry install --without evaluation --no-root && rm -rf $POETRY_CACHE_DIR
3030

31-
FROM python:3.12-slim as runtime
31+
FROM python:3.12.3-slim as runtime
3232

3333
WORKDIR /app
3434

0 commit comments

Comments
 (0)