Skip to content

Commit

Permalink
Add minimum dependency on base.pm v2.18
Browse files Browse the repository at this point in the history
This fixes a bug in some cases when using `SUPER::new()` such as:

```
t/SearchIO/Tiling.t .................
Error: Can't locate object method "new" via package "Bio::Search::HSP::GenericHSP::SUPER"
```

Fixes <#307>.

Connects with <#378>.
  • Loading branch information
zmughal authored and cjfields committed May 10, 2023
1 parent 80183ef commit b5db880
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Summary of important user-visible changes for BioPerl
-----------------------------------------------------

{{$NEXT}}
* Add minimum dependency on base.pm v2.18. Fixes bug in some cases when
using SUPER::new() [#307].

1.7.8 2021-02-02 23:02:18-06:00 America/Chicago
* Bio::SeqIO::interpro has been moved to a separate repository to
Expand Down
2 changes: 1 addition & 1 deletion lib/Bio/Root/Root.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Bio::Root::Root;
use strict;
use Bio::Root::IO;
use Scalar::Util qw(blessed reftype);
use base qw(Bio::Root::RootI);
use base 2.18 qw(Bio::Root::RootI);

=head1 NAME
Expand Down

0 comments on commit b5db880

Please sign in to comment.