Skip to content

Commit 4b0fe16

Browse files
authoredJun 27, 2024··
Merge pull request #415 from HackSoftware/update-python
Update Python
2 parents d2f8682 + a9e582e commit 4b0fe16

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎.github/workflows/django.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-python@v5
3333
with:
34-
python-version: 3.10.8
34+
python-version: 3.12.4
3535
cache: "pip"
3636
cache-dependency-path: |
3737
requirements/local.txt
@@ -42,7 +42,7 @@ jobs:
4242
- name: Cache pip
4343
uses: actions/cache@v4
4444
with:
45-
path: /opt/hostedtoolcache/Python/3.10.8/x64/ # This path is specific to Ubuntu
45+
path: /opt/hostedtoolcache/Python/3.12.4/x64/ # This path is specific to Ubuntu
4646
key: python-${{ hashFiles('requirements/local.txt') }}-${{ hashFiles('requirements/base.txt') }}
4747
- name: Install dependencies
4848
run: pip install -r requirements/local.txt

‎docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "3.12.0"
1+
version: "3.12.4"
22

33
services:
44
db:

‎docker/local.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This docker file is used for local development via docker-compose
22
# Creating image based on official python3 image
3-
FROM python:3.12.0
3+
FROM python:3.12.4
44

55
# Fix python printing
66
ENV PYTHONUNBUFFERED 1

‎docker/production.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This docker file is used for production
22
# Creating image based on official python3 image
3-
FROM python:3.12.0
3+
FROM python:3.12.4
44

55
# Installing all python dependencies
66
ADD requirements/ requirements/

‎runtime.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.12.0
1+
python-3.12.4

0 commit comments

Comments
 (0)