-
Notifications
You must be signed in to change notification settings - Fork 75
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
ignition-math[6,7]: depend on pybind11 #1793
Conversation
Signed-off-by: Louise Poubel <[email protected]>
Signed-off-by: Steve Peters <[email protected]>
Signed-off-by: Steve Peters <[email protected]>
It has some test failures Signed-off-by: Steve Peters <[email protected]>
Signed-off-by: Steve Peters <[email protected]>
Formula/ignition-math6.rb
Outdated
@@ -16,6 +16,7 @@ class IgnitionMath6 < Formula | |||
depends_on "doxygen" => :build | |||
depends_on "eigen" | |||
depends_on "ignition-cmake2" | |||
depends_on "pybind11" |
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.
depends_on "pybind11" | |
depends_on "pybind11" => :build |
Is pybind11 a build dependency only? Looking into the debian packaging seems so to me.
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 :build
flag ensures that a dependency is installed when building bottles but not when a bottle is installed. In order to ensure that we have pybind11
installed in our CI, we need to upgrade our CI scripts. I will accept this change and open a PR to fix the release-tools scripts accordingly
Signed-off-by: Steve Peters <[email protected]>
Alternative to #1776 without swig. Pairs with gazebosim/gz-math#361.