File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 31
31
- uses : actions/checkout@v4
32
32
- uses : actions/setup-python@v5
33
33
with :
34
- python-version : 3.10.8
34
+ python-version : 3.12.4
35
35
cache : " pip"
36
36
cache-dependency-path : |
37
37
requirements/local.txt
42
42
- name : Cache pip
43
43
uses : actions/cache@v4
44
44
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
46
46
key : python-${{ hashFiles('requirements/local.txt') }}-${{ hashFiles('requirements/base.txt') }}
47
47
- name : Install dependencies
48
48
run : pip install -r requirements/local.txt
Original file line number Diff line number Diff line change 1
- version : " 3.12.0 "
1
+ version : " 3.12.4 "
2
2
3
3
services :
4
4
db :
Original file line number Diff line number Diff line change 1
1
# This docker file is used for local development via docker-compose
2
2
# Creating image based on official python3 image
3
- FROM python:3.12.0
3
+ FROM python:3.12.4
4
4
5
5
# Fix python printing
6
6
ENV PYTHONUNBUFFERED 1
Original file line number Diff line number Diff line change 1
1
# This docker file is used for production
2
2
# Creating image based on official python3 image
3
- FROM python:3.12.0
3
+ FROM python:3.12.4
4
4
5
5
# Installing all python dependencies
6
6
ADD requirements/ requirements/
Original file line number Diff line number Diff line change 1
- python-3.12.0
1
+ python-3.12.4
You can’t perform that action at this time.
0 commit comments