Merge pull request #41 from papauorg/feature/python3.9-docker

Update github build workflow and docker image to python 3.9
This commit is contained in:
Alexander Vollkopf 2022-02-14 20:30:51 +01:00 committed by GitHub
commit 28cd17ec2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 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 \

View file

@ -10,10 +10,10 @@ cryptography==3.3.2
requests==2.25.1 requests==2.25.1
voluptuous==0.12.1 voluptuous==0.12.1
pyfiglet==0.8.post1 pyfiglet==0.8.post1
pandas==1.1.5 pandas==1.4.0
shortuuid==1.0.1 shortuuid==1.0.1
tabulate==0.8.7 tabulate==0.8.7
numpy==1.20.3 numpy==1.22.0
cbpi4ui cbpi4ui
click==7.1.2 click==7.1.2
importlib_metadata==4.8.2 importlib_metadata==4.8.2