Update Python to version 3.12 (#31)

* Python 3.12 has better performance
This commit is contained in:
Diego Heras 2023-12-10 10:16:54 +01:00 committed by GitHub
parent 75db331c55
commit c10515dc08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ jobs:
checks: write checks: write
strategy: strategy:
matrix: matrix:
python-version: ["3.11"] python-version: ["3.12"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -12,7 +12,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: '3.11' python-version: '3.12'
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip

View File

@ -1,4 +1,4 @@
FROM python:3.11-alpine FROM python:3.12-alpine
# Install package # Install package
WORKDIR /code WORKDIR /code