Skip to content

Commit

Permalink
Merge pull request #202 from luigi311/python-12
Browse files Browse the repository at this point in the history
Update to python 12
  • Loading branch information
luigi311 authored Oct 8, 2024
2 parents 7e13c14 + 023b638 commit 6a45ad1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine
FROM python:3.12-alpine

ENV PUID=1000
ENV PGID=1000
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.slim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3.12-slim

ENV PUID=1000
ENV PGID=1000
Expand Down

0 comments on commit 6a45ad1

Please sign in to comment.