-
Notifications
You must be signed in to change notification settings - Fork 79
Add support for python 3.12 #274
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
Conversation
irtazaakram
commented
Nov 3, 2025
- Resolves Drop Python 3.8 & Add Support for Python 3.12 #191
feanil
left a comment
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.
Generally looks good, one piece of missing documentation. Also, I've added the maintainer in case they want to do an extra pass review.
| RUN add-apt-repository -y ppa:deadsnakes/ppa && apt-get update && apt-get upgrade -y | ||
| RUN apt-get install -y vim python${python_version} python${python_version}-dev python${python_version}-distutils | ||
| RUN apt-get install -y vim python${python_version} python${python_version}-dev python${python_version}-venv || \ | ||
| apt-get install -y vim python${python_version} python${python_version}-dev python3-distutils |
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.
Is this because 3.12 doesn't have a -venv package? Can you add a comment in this file explaining why this || install is happening?
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.
python 3.12 doesn't have distutils package. I've added comments for these changes.
|
@MoisesGSalas do you want to review this? I think it's good to go. |
|
All good IMO, thanks. |