chore(ci): use Python 3.13 in CI #421

Merged
luketainton merged 3 commits from chore/ci-to-313 into main 2024-11-28 22:59:59 +01:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 58abd51840 - Show all commits

View File

@ -3,9 +3,11 @@ LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://github.com/luketainton/webexmemebot"
USER root
ENV PYTHONPATH="/run:/usr/local/lib/python3.11/lib-dynload:/usr/local/lib/python3.11/site-packages:/usr/local/lib/python3.11"
ENV PYTHONPATH="/run:/usr/local/lib/python3.13/lib-dynload:/usr/local/lib/python3.13/site-packages:/usr/local/lib/python3.13"
WORKDIR /run
COPY imp.py /run/imp.py
RUN mkdir -p /.local && \
chmod -R 777 /.local && \
pip install -U pip poetry

4
imp.py Normal file
View File

@ -0,0 +1,4 @@
"""Compatibility module that imports all symbols from the importlib module.
and exposes them as imp."""
from importlib import *