Skip to content

Commit

Permalink
Merge pull request #1389 from swirlai/ds-2507
Browse files Browse the repository at this point in the history
update to Python 3.12.4 images, develop branch
  • Loading branch information
dnicodemus authored Jul 11, 2024
2 parents 7ea72c7 + b34c0d8 commit c70369f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.2'
python-version: '3.12.4'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.2'
python-version: '3.12.4'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.2'
python-version: '3.12.4'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.2'
python-version: '3.12.4'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.2'
python-version: '3.12.4'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Use an official Python runtime as a parent image
FROM python:3.12.2-slim-bookworm
FROM python:3.12.4-slim-bookworm

# Upgrade pip to the specified version or higher
RUN pip install --no-cache-dir --upgrade 'pip>=23.3'
RUN pip install --no-cache-dir --upgrade 'pip>=24.0'

# try to upgrade to a more recent version of openssl
RUN apt-get update
Expand Down

0 comments on commit c70369f

Please sign in to comment.