Closed djjudas21 closed 6 years ago
You can use '== 4.046'
to do what you mean.
'4.046'
means "at a minimum 4.046" per CPAN::Meta::Spec:
https://metacpan.org/pod/CPAN::Meta::Spec#Version-Ranges
Actually in this situation '!=4.047'
would be the correct solution --- or better said, the optimistic solution, in the hope that the next release fixes the problem.
After a running into a bug with
DBD::mysql
4.047 I needed to pin to an older version.Relevant snippet from my
cpanfile
:Output from
cpanm
:Why does it correctly specify 4.046 and then go on to fetch 4.047 anyway?
Full output from Jenkins CI available here