File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 16
16
- name : Set up Python
17
17
uses : actions/setup-python@v4
18
18
with :
19
- python-version : 3.9
19
+ python-version : ' 3.12 '
20
20
cache : ' pip'
21
21
cache-dependency-path : ' requirements/*.txt'
22
22
- name : Install dependencies
Original file line number Diff line number Diff line change 1
- FROM python:3.9 -slim
1
+ FROM python:3.12 -slim
2
2
3
3
# Install packages needed to run your application (not build deps):
4
4
# We need to recreate the /usr/share/man/man{1..8} directories first because
@@ -33,9 +33,9 @@ RUN set -ex \
33
33
zlib1g-dev \
34
34
" \
35
35
&& apt-get update && apt-get install -y --no-install-recommends $BUILD_DEPS \
36
- && python3.9 -m venv ${VIRTUAL_ENV} \
37
- && pip install -U pip \
38
- && pip install --no-cache-dir -r /requirements/production.txt \
36
+ && python3.12 -m venv ${VIRTUAL_ENV} \
37
+ && python3.12 -m pip install -U pip \
38
+ && python3.12 -m pip install --no-cache-dir -r /requirements/production.txt \
39
39
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $BUILD_DEPS \
40
40
&& rm -rf /var/lib/apt/lists/*
41
41
Original file line number Diff line number Diff line change 1
- python-3.10.2
1
+ python-3.12.1
You can’t perform that action at this time.
0 commit comments