Merge pull request #202 from luigi311/python-12

Update to python 12
pull/205/head
Luigi311 2024-10-07 23:10:00 -06:00 committed by GitHub
commit 6a45ad18f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 2 deletions

View File

@ -10,12 +10,19 @@ on:
- .gitignore
- "*.md"
env:
PYTHON_VERSION: '3.12'
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Install dependencies"
run: pip install -r requirements.txt && pip install -r test/requirements.txt
@ -27,6 +34,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Install dependencies"
run: |
pip install -r requirements.txt

View File

@ -1,4 +1,4 @@
FROM python:3.11-alpine
FROM python:3.12-alpine
ENV PUID=1000
ENV PGID=1000

View File

@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3.12-slim
ENV PUID=1000
ENV PGID=1000