-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
containers: drop el8, fc36,fc37,fc38 and add fc40,fc41 #213
base: master
Are you sure you want to change the base?
Conversation
Bring the containers a bit up-to-date again. Drop CentOS 8 container and EOL Fedora releases and add Fedora 40 and Fedora 41. Signed-off-by: Jean-Louis Dupond <[email protected]>
Update our actions to newest versions in order to make it work again. Signed-off-by: Jean-Louis Dupond <[email protected]>
6a60d6d
to
e47717b
Compare
Install python3.12 packages on CentOS 9 in order to enable tests on that version. Signed-off-by: Jean-Louis Dupond <[email protected]>
e47717b
to
0a37e86
Compare
@@ -25,6 +26,9 @@ RUN echo v1 \ | |||
python3.11-setuptools \ | |||
python3.11-ovirt-engine-sdk4 \ | |||
python3.11-pip \ | |||
python3.12-devel \ | |||
python3.12-setuptools \ | |||
python3.12-pip \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not replace python 3.11 with 3.12?
@@ -14,6 +14,7 @@ RUN echo v1 \ | |||
gcc \ | |||
git \ | |||
libguestfs-tools-c \ | |||
libxml2-devel \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this needed? maybe add a comment?
@@ -39,3 +43,4 @@ COPY requirements.txt requirements.txt | |||
RUN python3 -m pip install --upgrade --ignore-installed pip \ | |||
&& python3 -m venv /venv \ | |||
&& /venv/bin/python3 -m pip install --requirement requirements.txt | |||
RUN pip3.12 install ovirt-engine-sdk-python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why use 2 version of pip inside the venv? If we must have python 3.12 to install ovirt-engine-sdk-python we should probably move to python 3.12.
If we don't have a better way at add a comment explaing why we do this.
Bring the containers a bit up-to-date again.
Drop CentOS 8 container and EOL Fedora releases and add Fedora 40 and Fedora 41.