Skip to content

Commit

Permalink
Added supported perl versions on travis to linter.
Browse files Browse the repository at this point in the history
This is the second try after pull#33.

I now added the supported perl versions in the correct place.
Also, I found not only the problem is that perl 5.8 is supported on
Travis and is rejected by the linter (although I understand it is
not /fully/ supported, or at the least, if it breaks not many people
will care), but also perl 5.18, which is the latest stable perl, and
perl 5.19 ARE available on travis but are rejected by the linter.

So I made sure these are now accepted.
  • Loading branch information
mbeijen committed Oct 31, 2013
1 parent e981380 commit d7ee2bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/travis/lint/linter.rb
Expand Up @@ -87,7 +87,7 @@ def self.valid?(hsh)
KNOWN_PHP_VERSIONS = %w(5.2 5.3 5.3.3 5.4 5.5)

KNOWN_PYTHON_VERSIONS = %w(2.5 2.6 2.7 3.2 3.3 pypy)
KNOWN_PERL_VERSIONS = %w(5.10 5.12 5.14 5.16)
KNOWN_PERL_VERSIONS = %w(5.8 5.10 5.12 5.14 5.16 5.18 5.19)


#
Expand Down

0 comments on commit d7ee2bb

Please sign in to comment.