From aaa4e35dffb939094e95f7db360b91bf0683c330 Mon Sep 17 00:00:00 2001 From: Rhett Reisman Date: Sat, 27 Jul 2024 12:00:31 -0500 Subject: [PATCH 1/2] Update setup.py --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index dff0594..a2d9537 100644 --- a/setup.py +++ b/setup.py @@ -30,11 +30,10 @@ 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', ], - python_requires='>=3.8', + python_requires='>=3.9', ) \ No newline at end of file From 8008e1158fc8c62589e3cb03bffedda4d6229036 Mon Sep 17 00:00:00 2001 From: Rhett Reisman Date: Sat, 27 Jul 2024 12:00:33 -0500 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 815a479..8241d13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM amazonlinux:2023 # Install Python 3.9 and other necessary tools -RUN dnf install -y python3.8 python3.8-devel gcc zip && \ +RUN dnf install -y python3.9 python3.9-devel gcc zip && \ dnf clean all # Set up the work directory @@ -12,13 +12,13 @@ WORKDIR /root COPY . . # Create a virtual environment and install dependencies -RUN python3.8 -m venv /root/venv && \ +RUN python3.9 -m venv /root/venv && \ . /root/venv/bin/activate && \ pip install --upgrade pip && \ pip install \ --platform manylinux2014_x86_64 \ --implementation cp \ - --python-version 3.8 \ + --python-version 3.9 \ --only-binary=:all: --upgrade \ -r requirements.txt && \ pip install . && \