-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
don't use distutils if Python version >= 3.10 #8759
Conversation
This comment has been minimized.
This comment has been minimized.
I detected other pull requests that are modifying boost/all recipe:
This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prs so don't hesitate to report issues/improvements there. |
This comment has been minimized.
This comment has been minimized.
python_version_parts = self.info.options.python_version.split('.') | ||
python_major = int(python_version_parts[0]) | ||
python_minor = int(python_version_parts[1]) | ||
if(python_major >= 3 and python_minor >= 10): |
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.
good enough (well, it won't work for python 4.0, but okay for today)
@SSE4 it seems @prince-chrismc approval didn't count towards the required reviews |
All green in build 4 (
|
The GitHub UI does account for the costume logic the bot uses to merge PRs |
Specify library name and version: boost/1.78.0
Boost recipe is broken with Python 3.10, see #8638
fixes #8638
conan-center hook activated.