Feature/python3.13 (#553)

* Python to 3.13

* cassandra-driver -> scylla-driver
  (cassandra-driver doesn't work with Python 3.13)
This commit is contained in:
cybermaggedon 2025-10-11 12:19:26 +01:00 committed by GitHub
parent 51107008fd
commit 05b9063fea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 17 additions and 101 deletions

View file

@ -8,8 +8,8 @@ FROM docker.io/fedora:42 AS base
ENV PIP_BREAK_SYSTEM_PACKAGES=1
RUN dnf install -y python3.12 && \
alternatives --install /usr/bin/python python /usr/bin/python3.12 1 && \
RUN dnf install -y python3.13 && \
alternatives --install /usr/bin/python python /usr/bin/python3.13 1 && \
python -m ensurepip --upgrade && \
pip3 install --no-cache-dir build wheel aiohttp && \
pip3 install --no-cache-dir pulsar-client==3.7.0 && \