-
Notifications
You must be signed in to change notification settings - Fork 31
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
Replace deprecated PythonInterp with Python3 (backport of #213) #218
Conversation
* Replace deprecated PythonInterp with Python3 Signed-off-by: Bi0T1N <[email protected]>
all ign-math python tests have just started failing on 22.04 (gazebosim/gz-math#401) and the timing makes me suspect that it is related to this pull request |
This is because |
The PYTHON_EXECUTABLE cmake variable was replaced by Python3_EXECUTABLE in gazebosim#218 for new versions of cmake. This breaks packages currently using the previous variable name. This restores PYTHON_EXECUTABLE to allow a tick-tock cycle for downstream packages to transition. Signed-off-by: Steve Peters <[email protected]>
* IgnPython: restore PYTHON_EXECUTABLE for now The PYTHON_EXECUTABLE cmake variable was replaced by Python3_EXECUTABLE in #218 for new versions of cmake. This breaks packages currently using the previous variable name. This restores PYTHON_EXECUTABLE to allow a tick-tock cycle for downstream packages to transition. Signed-off-by: Steve Peters <[email protected]> Co-authored-by: Jose Luis Rivero <[email protected]>
…im#218) * Replace deprecated PythonInterp with Python3 Signed-off-by: Bi0T1N <[email protected]> Signed-off-by: Harsh Mahesheka <[email protected]>
* IgnPython: restore PYTHON_EXECUTABLE for now The PYTHON_EXECUTABLE cmake variable was replaced by Python3_EXECUTABLE in gazebosim#218 for new versions of cmake. This breaks packages currently using the previous variable name. This restores PYTHON_EXECUTABLE to allow a tick-tock cycle for downstream packages to transition. Signed-off-by: Steve Peters <[email protected]> Co-authored-by: Jose Luis Rivero <[email protected]> Signed-off-by: Harsh Mahesheka <[email protected]>
Backport of #213