Changes between Initial Version and Version 2 of Ticket #38256


Ignore:
Timestamp:
Mar 3, 2013, 2:26:24 AM (12 years ago)
Author:
larryv (Lawrence Velázquez)
Comment:

This has nothing to do with HDF5, and the bug in question was fixed in netcdf4-python 1.0.2.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38256

    • Property Status changed from new to assigned
    • Property Summary changed from Import Error with HDF5 version 1.8.10 to py*-netcdf4 @1.0fix1: update to 1.0.3
    • Property Version changed from 2.1.3 to
    • Property Owner changed from macports-tickets@… to larryv@…
    • Property Type changed from defect to update
    • Property Port py-netcdf4 added; hdf5-18 netcdf4 removed
  • Ticket #38256 – Description

    initial v2  
    993. attempt to import netCDF4
    1010
    11 What is the expected output? What do you see instead?
     11What is the expected output? What do you see instead?\\
    1212No expected output, instead get this import error
     13{{{
     14ImportError: netCDF4 module must be linked against HDF5 version 1.8.4-patch1 or higher, got 1.8.10
     15}}}
    1316
    14 ImportError: netCDF4 module must be linked against HDF5 version 1.8.4-patch1 or higher, got 1.8.10
    15 
    16 What version of the product are you using? On what operating system?
     17What version of the product are you using? On what operating system?\\
    1718netCDF4-1.0.1
    1819
    19 Please provide any additional information below.
    20 It appears that the __hdf5libversion__ and the __required_hdf5version__ variables are strings are used in the version comparison.  The problem appears to be that the string comparison does not work now that HDF5 is up to version 1.8.10.
     20Please provide any additional information below.\\
     21It appears that the __hdf5libversion__ and the __required_hdf5version__ variables are strings are used in the version comparison.  The problem appears to be that the string comparison does not work now that HDF5 is up to version 1.8.10.\\
    2122"1.8.10">"1.8.4" is FALSE
    2223
    23 This would have worked in previous versions of HDF5 since
     24This would have worked in previous versions of HDF5 since \\
    2425"1.8.9">"1.8.4" is TRUE