diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 2496369..335161f 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up Python 3.7 + - name: Set up Python 3.10 uses: actions/setup-python@v1 with: - python-version: 3.7 + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/README.md b/README.md index 74ba51d..1c09879 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![BUVIC](assets/logo_github_header.png) -[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-370/) +[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3105/) [![GitHub top language](https://img.shields.io/github/languages/top/pec0ra/buvic)](https://github.com/pec0ra/buvic/search?l=Python) [![GitHub](https://img.shields.io/github/license/pec0ra/buvic)](https://www.gnu.org/licenses/gpl-3.0) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/pec0ra/buvic)](https://github.com/pec0ra/buvic/releases/) diff --git a/docker/Dockerfile.server b/docker/Dockerfile.server index 10a6282..e8e65a4 100644 --- a/docker/Dockerfile.server +++ b/docker/Dockerfile.server @@ -3,9 +3,9 @@ FROM ubuntu:19.04 # Update repository cache RUN apt-get update -# Install python 3.7 and git +# Install python 3.10 and git RUN apt-get install -y \ - python3.7 \ + python3.10 \ python3-pip \ git diff --git a/docker/Dockerfile.watch b/docker/Dockerfile.watch index d70d6d7..dcf7ee9 100644 --- a/docker/Dockerfile.watch +++ b/docker/Dockerfile.watch @@ -3,9 +3,9 @@ FROM ubuntu:19.04 # Update repository cache RUN apt-get update -# Install python 3.7 and git +# Install python 3.10 and git RUN apt-get install -y \ - python3.7 \ + python3.10 \ python3-pip \ git