Skip to content

Commit 6112d90

Browse files
Ahmad Shahbamohawk2
Ahmad Shahba
authored andcommitted
Addressed warning related to masking of %PDLtoHDF5fileMapping
1 parent 3ab50c6 commit 6112d90

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
os: [ubuntu-latest]
26-
perl-version: ['5.16', '5.20']
26+
perl-version: ['5.14', '5.20']
2727
include:
2828
- perl-version: '5.30'
2929
os: ubuntu-latest

HDF5/Dataset.pm

-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ B<Usage:>
198198
);
199199

200200
# Mapping of PDL types to what types they are written to in the HDF5 file.
201-
my %PDLtoHDF5fileMapping;
202201
if ( isbigendian() ) {
203202
%PDLtoHDF5fileMapping = (
204203
$PDL::Types::PDL_SB => PDL::IO::HDF5::H5T_STD_I8BE(),

Makefile.PL

+2-3
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ my $meta_merge = {
125125
'Andrew Benson <abenson AT obs.carnegiescience.edu>',
126126
],
127127
'license' => [ 'perl_5' ],
128-
'version' => '0.73',
129128
'meta_spec' => {
130129
'version' => '2',
131130
'url' => 'http://search.cpan.org/perldoc?CPAN::Meta::Spec',
@@ -155,7 +154,7 @@ my $meta_merge = {
155154
},
156155
},
157156
resources => {
158-
license => [ 'http://cpansearch.perl.org/src/CHM/PDL-IO-HDF5-0.73/COPYRIGHT' ],
157+
license => [ 'http://dev.perl.org/licenses/' ],
159158
homepage => 'http://pdl.perl.org/',
160159
bugtracker => {
161160
web => 'https://github.com/PDLPorters/pdl-io-hdf5/issues',
@@ -199,4 +198,4 @@ WriteMakefile(
199198
'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz', PREOP => $preop },
200199
);
201200

202-
sub MY::postamble { pdlpp_postamble($package); }
201+
sub MY::postamble { pdlpp_postamble($package); }

0 commit comments

Comments
 (0)