dry-match-62274
03/25/2020, 6:46 AMconfluent_kafka 1.3.0
as our python requirements and build our binary.
./pants binary src/python/::
......
Exception caught: (pex.vendor._vendored.wheel.wheel.install.BadWheelFile)
......
Exception message: No expected hash for file 'confluent_kafka/.dylibs/monitoring-interceptor.dylib'
we tested package by installing it using pip / pipenv and works fine.
is there any workaround to avoid the build being blocked here?hundreds-father-404
03/25/2020, 7:09 AMdry-match-62274
03/25/2020, 7:13 AM1.22.0
hundreds-father-404
03/25/2020, 7:36 AMpex confluent_kafka==1.3.0
dry-match-62274
03/25/2020, 7:37 AMhundreds-father-404
03/25/2020, 2:47 PMdry-match-62274
03/26/2020, 12:12 AMbundle(fileset=[‘src/scripts/*.sh’], relative_to=‘src’)we had this bundle in our Build file, how could we convert
relative_to
?hundreds-father-404
03/27/2020, 5:53 AMrelative_to
shouldn’t need any conversion. Is it not working as expected? What was the original bundle
value?dry-match-62274
03/27/2020, 6:01 AMbundles=[
bundle(relative_to='script', fileset=globs('script/*')),
...
where the script returns
This script cannot safely updatefields. Please manually update thebundles
field tobundle(fileset=)
.[‘script/*’]
hundreds-father-404
03/27/2020, 6:03 AMbundle(relative_to='script', fileset=['script/*])
work as you’d expect? That should behave identicallydry-match-62274
03/27/2020, 6:04 AMhundreds-father-404
03/27/2020, 6:04 AMbundle
is that it’s really tricky to get the formatting right for bundle
where you don’t mess up things like the relative_to
field. So, we decided to give a warning rather than trying to automate itrelative_to
. You still can.dry-match-62274
03/27/2020, 6:08 AMreplace each bundle(fileset=*) with ['*']
. now I know what should be updated is only the fileset
parthundreds-father-404
03/27/2020, 6:09 AMdry-match-62274
03/27/2020, 6:09 AM