Commit Graph

12 Commits

Author SHA256 Message Date
Ana Guerrero
ab70a240cd Accepting request 1199622 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/1199622
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hdf5storage?expand=0&rev=6
2024-09-09 12:45:35 +00:00
df11e96f83 - Unpin numpy 2
* Add hdf5storage-pr134-numpy2.patch
  * gh#frejanordsiek/hdf5storage#134 (backported)
- Make it noarch again

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-hdf5storage?expand=0&rev=12
2024-09-09 08:32:36 +00:00
Ana Guerrero
1181a90ec2 Accepting request 1186405 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/1186405
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hdf5storage?expand=0&rev=5
2024-07-09 18:06:05 +00:00
4b5305b87a - Limit to numpy <2: Not compatible
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-hdf5storage?expand=0&rev=10
2024-07-09 13:27:02 +00:00
Dominique Leuenberger
34eb37f70b Accepting request 1077427 from devel:languages:python:numeric
- Update to 0.1.19 Bugfix release:
  * Issue #122 and #124. Replaced use of deprecated ``numpy.asscalar``
    functions with the ``numpy.ndarray.item`` method.
  * Issue #123. Forced the use of English month and day of the week names
    in the HDF5 header for MATLAB compatibility.
  * Issue #125. Fixed accidental collection of
    ``pkg_resources.parse_version`` from setuptools as a Marshaller now
    that it is a class.

OBS-URL: https://build.opensuse.org/request/show/1077427
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hdf5storage?expand=0&rev=4
2023-04-05 19:27:45 +00:00
Steve Kowalik
cc56e07263 - Update to 0.1.19 Bugfix release:
* Issue #122 and #124. Replaced use of deprecated ``numpy.asscalar``
    functions with the ``numpy.ndarray.item`` method.
  * Issue #123. Forced the use of English month and day of the week names
    in the HDF5 header for MATLAB compatibility.
  * Issue #125. Fixed accidental collection of
    ``pkg_resources.parse_version`` from setuptools as a Marshaller now
    that it is a class.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-hdf5storage?expand=0&rev=8
2023-04-05 07:08:54 +00:00
Dominique Leuenberger
e3ad6bb52c Accepting request 949874 from devel:languages:python:numeric
- Update 0.1.18 (performance improving release):
  - Pull Request #111 from Daniel Hrisca. Many repeated calls to
    the __getitem__ methods of objects were turned into single
    calls.
  - Further reducionts in __getitem__ calls in the spirit of PR
    #111.
- Update to 0.1.17 (bugfix and deprecation workaround release):
  - Issue #109. Fixed the fix Issue #102 for 32-bit platforms
    (previous fix was segfaulting).
  - Moved to using pkg_resources.parse_version from setuptools
    with distutils.version classes as a fallback instead of just
    the later to prepare for the removal of distutils (PEP 632)
    and prevent warnings on Python versions where it is marked as
    deprecated.
  - Issue #110. Changed all uses of the tostring method on numpy
    types to using tobytes if available, with tostring as the
    fallback for old versions of numpy where it is not.
- Add nose-to-pytest.patch which allows use of pytest instead of
  nose (not based on the upstream solution).

OBS-URL: https://build.opensuse.org/request/show/949874
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hdf5storage?expand=0&rev=3
2022-01-29 19:59:44 +00:00
f10f1da35a - Update 0.1.18 (performance improving release):
- Pull Request #111 from Daniel Hrisca. Many repeated calls to
    the __getitem__ methods of objects were turned into single
    calls.
  - Further reducionts in __getitem__ calls in the spirit of PR
    #111.
- Update to 0.1.17 (bugfix and deprecation workaround release):
  - Issue #109. Fixed the fix Issue #102 for 32-bit platforms
    (previous fix was segfaulting).
  - Moved to using pkg_resources.parse_version from setuptools
    with distutils.version classes as a fallback instead of just
    the later to prepare for the removal of distutils (PEP 632)
    and prevent warnings on Python versions where it is marked as
    deprecated.
  - Issue #110. Changed all uses of the tostring method on numpy
    types to using tobytes if available, with tostring as the
    fallback for old versions of numpy where it is not.
- Add nose-to-pytest.patch which allows use of pytest instead of
  nose (not based on the upstream solution).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-hdf5storage?expand=0&rev=7
2022-01-29 13:19:11 +00:00
Dominique Leuenberger
694107f8a2 Accepting request 877821 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/877821
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hdf5storage?expand=0&rev=2
2021-03-12 12:33:08 +00:00
aea83d4209 Accepting request 877801 from home:bnavigator:branches:devel:languages:python:numeric
- Update to 0.1.16
  * Issue #81 and #82. h5py.File will require the mode to be 
    passed explicitly in the future. All calls without passing it 
    were fixed to pass it.
  * Issue #102. Added support for h5py 3.0 and 3.1.
  * Issue #73. Fixed bug where a missing variable in loadmat would 
    cause the function to think that the file is a pre v7.3 format 
    MAT file fall back to scipy.io.loadmat which won't work since 
    the file is a v7.3 format MAT file.
  * Fixed formatting issues in the docstrings and the 
    documentation that prevented the documentation from building.
- Release 0.1.15
  * Issue #68. Fixed bug where str and numpy.unicode_ strings (but 
    not ndarrays of them) were saved in uint32 format regardless 
    of the value of Options.convert_numpy_bytes_to_utf16.
  * Issue #70. Updated setup.py and requirements.txt to specify 
    the maximum versions of numpy and h5py that can be used for 
    specific python versions (avoid version with dropped support).
  * Issue #71. Fixed bug where the 'python_fields' attribute 
    wouldn't always be written when doing python metadata for data 
    written in a struct-like fashion. The bug caused the field 
    order to not be preserved when writing and reading.
  * Fixed an assertion in the tests to handle field re-ordering 
    when no metadata is used for structured dtypes that only 
    worked on older versions of numpy.
  * Issue #72. Fixed bug where python collections filled with 
    ndarrays that all have the same shape were converted to 
    multi-dimensional object ndarrays instead of a 1D object 
    ndarray of the elements. 
- Skip python2 (dropped upstream) and python36 (NumPy 1.20, NEP 29)
- Don't build for 32-bit gh#frejanordsiek/hdf5storage#109

OBS-URL: https://build.opensuse.org/request/show/877801
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-hdf5storage?expand=0&rev=5
2021-03-08 22:20:17 +00:00
Dominique Leuenberger
f2048603bc Accepting request 627175 from devel:languages:python:numeric
Utilities to read/write HDF5 files, including MATLAB v7.3 MAT files

OBS-URL: https://build.opensuse.org/request/show/627175
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hdf5storage?expand=0&rev=1
2018-08-03 10:39:59 +00:00
Todd R
d16812958c Accepting request 627174 from devel:languages:python:misc
Utilities to read/write HDF5 files, including MATLAB v7.3 MAT files

OBS-URL: https://build.opensuse.org/request/show/627174
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-hdf5storage?expand=0&rev=1
2018-08-02 20:27:07 +00:00