-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Python housekeeping #3231
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
Python housekeeping #3231
Conversation
a3f753b to
ba3259c
Compare
|
I see due to this change the AppVeyor build now uses Python 3.8 instead of the one specified in the config... will need to investigate |
42e885b to
207157a
Compare
|
|
|
This hole is deeper than I have anticipated. |
|
Is this complete? |
- find_package(PythonInterp) and find_package(PythonLibs) were deprecated in 3.12 and removed in 3.27 - The project minimum is at 3.16 already
- Deprecated in Python 3.2 and removed in 3.11
- collections.abc was added in 3.3 collections.Hashable removed in 3.10
- Locally and in Windows actions the second option is needed
- Full UUID support not added and this seems to work for some cases but not all, thus removing until full UUID is added
- And add message if interpreter not found - Remove the QUIET to get some idea of what cmake is doing - Trying to debug issue on Appveyor
- The change in find_package favours the latest Python - Force cmake to use the one specified - Put back the echo again since it is needed
- Same as per the cmake side
- No need for the check in the step any more since not supporting python 2
- Common problem, common code
- assert_ was removed in Python 3 and later removed - Fixed the script to error out correctly when the tests fail - The RunClientServer.py test did not fail as expected on this error
7e12a30 to
a748a0a
Compare
Some Python housekeeping in trying to make some progress on various python related tasks to get ultimately to attempt to implement Python UUID support
The following is addressed:
[skip ci]anywhere in the commit message to free up build resources.