Update python to v3.9 when building

This commit is contained in:
Philipp Grathwohl 2022-02-14 09:54:27 +01:00
parent 259f5abc78
commit 68fb5f45c8
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ jobs:
- name: Setup python environment - name: Setup python environment
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: '3.7' python-version: '3.9'
- name: Clean - name: Clean
run: python setup.py clean --all run: python setup.py clean --all

View file

@ -3,7 +3,7 @@ RUN apk --no-cache add curl && mkdir /downloads
# Download installation files # Download installation files
RUN curl https://github.com/avollkopf/craftbeerpi4-ui/archive/main.zip -L -o ./downloads/cbpi-ui.zip RUN curl https://github.com/avollkopf/craftbeerpi4-ui/archive/main.zip -L -o ./downloads/cbpi-ui.zip
FROM python:3.7 as base FROM python:3.9 as base
# Install dependencies # Install dependencies
RUN apt-get update \ RUN apt-get update \