-
Notifications
You must be signed in to change notification settings - Fork 1
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
239 Add support for python 3.13 #270
Conversation
da32bff
to
689ffac
Compare
047cd08
to
1c64d50
Compare
1c64d50
to
8862ca4
Compare
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.
The part after ;
of the commit message should go in the body.
The header is the what, the body is how and why.
61c9194
to
05b7fe4
Compare
Commit message fixed. |
05b7fe4
to
6d54a33
Compare
Build & release are still done against python 3.12
Remove the obsolete macos-12 environment and add the new macos-15 one.
6d54a33
to
1f9d475
Compare
/root/miniforge3/bin/conda create -y -n py${version} python=${version} setuptools; \ | ||
/root/miniforge3/bin/conda create -y -n py${version}_conda python=${version} setuptools; \ |
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.
I would have added separate conda install -y -n ... setuptools
lines, so that the supplemental (new) installation of setuptools is launched in a separate line and instruction.
@@ -41,8 +41,9 @@ RUN true \ | |||
ARG PYTHON_VERSIONS | |||
RUN /bin/bash -c 'for version in ${PYTHON_VERSIONS}; \ | |||
do \ | |||
/root/miniforge3/bin/conda create -y -n py${version} python=${version}; \ | |||
/root/miniforge3/bin/conda create -y -n py${version}_conda python=${version}; \ | |||
# setuptools is a strong requirement for khiops-python. Force its installation because it is omitted since python 3.13 |
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.
The Dockerfile.rocky
should also be updated with this IMHO.
Resolves #239