As I understands, RFC6979 uses deterministic K which is generated by HMAC-SHA256(private_key, message). In this way, I guess if same key with same message, ecdsa signature generated would be always same and so repeatable.
However, I just found some cases where signature diverges across different software(which claims they follow RFC6979), even with same key and message. I think it would be probably because the implementation of some of software I used is wrong(i.e. generation of K in wrong way), but gets just wondering if there's any other possibility that even strictly meeting RFC6979 results in diverging signature when message and key are same.
Appreciate in advance!