in reply to What to specify as minimum dependencies
Personally, unless I already know better, I specify no minimum version in my prerequisites (in Makefile.PL):
... 'PREREQ_PM' => { 'AnyEvent' => '0', 'AnyEvent::HTTP' => '0', # for the reverse se +arch 'Growl::Any' => '0', # for the notification }, # e.g., Module::Name => 1.1 ...
If, thanks to the CPAN testers, I find that a module version is problematic, I bump my prerequisite version number above that, but by default, I'm lenient in what I accept.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: What to specify as minimum dependencies
by pokki (Monk) on Jan 16, 2011 at 22:08 UTC | |
by Corion (Patriarch) on Jan 17, 2011 at 07:37 UTC |