From: Peter Rabbitson Date: Fri, 24 Jan 2014 04:30:48 +0000 (+0100) Subject: SQLite is not a build_requires dep anymore (trap-the-sigsegv days are gone) X-Git-Tag: v0.08260~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7850f06e41a420dab9225002a59734ea7bffb852;p=dbsrgits%2FDBIx-Class.git SQLite is not a build_requires dep anymore (trap-the-sigsegv days are gone) --- diff --git a/Makefile.PL b/Makefile.PL index 7ae4138..1f45aad 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -90,6 +90,15 @@ my $runtime_requires = { }; my $build_requires = { +}; + +my $test_requires = { + 'File::Temp' => '0.22', + 'Test::Deep' => '0.101', + 'Test::Exception' => '0.31', + 'Test::Warn' => '0.21', + 'Test::More' => '0.94', + # needed for testing only, not for operation # we will move away from this dep eventually, perhaps to DBD::CSV or something ### @@ -99,14 +108,6 @@ my $build_requires = { ### often *not* easy or even possible) ### 'DBD::SQLite' => '1.29', -}; - -my $test_requires = { - 'File::Temp' => '0.22', - 'Test::Deep' => '0.101', - 'Test::Exception' => '0.31', - 'Test::Warn' => '0.21', - 'Test::More' => '0.94', # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t # remove and do a manual glob-collection if n::c is no longer a dep