Closed ajschmidt8 closed 1 year ago
Can we add a test for this? Fine if it happens in a follow-up PR, to unblock CI.
Yup, opened https://github.com/rapidsai/dependency-file-generator/issues/39.
I'll merge this for now.
:tada: This PR is included in version 1.5.1 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
There is currently a conditional statement that is incorrectly attempting to index a string instead of retrieving a value from a dictionary.
Instead of accessing
f["output"]
, it needs to be adjusted tofiles[f]["output"]
The code excerpt below shows a minimal reproducer of the problem and the solution.