Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python310-sparse-0.14.0-2.6 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python310-sparse Distribution: openSUSE Tumbleweed
Version: 0.14.0 Vendor: openSUSE
Release: 2.6 Build date: Mon May 29 18:44:57 2023
Group: Development/Languages/Python Build host: reproducible
Size: 746217 Source RPM: python-sparse-0.14.0-2.6.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pydata/sparse
Summary: Sparse n-dimensional arrays for Python
This module implements sparse multidimensional arrays on top of NumPy and
Scipy.sparse. It generalizes the scipy.sparse.coo_matrix layout, but
extends beyond just rows and columns to an arbitrary number of
dimensions.

The original motivation is for machine learning algorithms, but it is
intended for somewhat general use.

Provides

Requires

License

BSD-3-Clause

Changelog

* Mon May 29 2023 Ben Greiner <code@bnavigator.de>
  - Unskip python311: numby 0.57 is released
  - Skip test_tensordot: gh#pydata/sparse#594
* Sat Mar 25 2023 Ben Greiner <code@bnavigator.de>
  - Update to 0.14.0
    * sparse.einsum support (PR #564 thanks @jcmgray)
    * Some bug-fixes (PR #524, PR #527, PR #555 thanks @hameerabbasi,
      PR #569, thanks @jamestwebber, PR #534, thanks
      @sarveshbhatnagar)
    * Some performance improvements (PR #570, thanks @jamestwebber,
      PR #540, thanks @smldub).
  - Skip python311 build: no numba yet
  - Drop skip-32bit-archs.patch, disable 32bit test suite: too many
    tests involve 64bit types
* Fri Oct 21 2022 Matej Cepl <mcepl@suse.com>
  - Add skip-32bit-archs.patch skiping a failing test on 32bit arch
    (gh#pydata/sparse#490).
  - Also remove conditional python_module definition.
* Thu Jul 14 2022 Ben Greiner <code@bnavigator.de>
  - remove stray ancient pathlib requirement
  - Dask supports Python 3.10 now: reenable tests
* Mon Jan 24 2022 Ben Greiner <code@bnavigator.de>
  - Don't test optional dask for python310: not supported yet
* Wed Sep 22 2021 Ben Greiner <code@bnavigator.de>
  - Update to 0.13.0
    * GCXS improvements and changes.
    * Maintainence fixes
    * sparse.DOK.from_scipy_sparse method
    * Black re-formatting
    * Add sparse.pad
    * Switch to GitHub Actions
    * Fix a number of bugs in format conversion.
    * Fix bug in sparse.matmul for higher-dimensional arrays.
    * Fix scalar conversion to COO
    * Fix OOB memory accesses
    * Fixes element-wise ops with scalar COO array.
    * Fix scalar broadcast_to with nnz==0.
    * Add order parameter to {zero, ones, full}[_like].
    * Fix tensordot typing bugs.
  - Release 0.12.0
    * There are a number of large changes in this release. For
      example, we have implemented the GCXS type, and its
      specializations CSR and CSC. We plan on gradually improving the
      performance of these.
    * A number of GCXS fixes and additions
    * Ability to change the index dtype for better storage
      characteristics.
    * Some work on DOK arrays to bring them closer to the other
      formats
    * CSR and CSC specializations of GCXS
    * Fix a number of bugs
    * Add nnz parameter to sparse.random
  - Drop sparse-pr421-fix-cootype.patch merged upstream
* Fri Feb 12 2021 Dirk Müller <dmueller@suse.com>
  - skip python 3.6 build
* Mon Dec 28 2020 Benjamin Greiner <code@bnavigator.de>
  - Update to 0.11.2
    * Fix TypingError on sparse.dot with complex dtypes. (Issue #403,
      PR #404)
  - Changelog for 0.11.1
    * Fix ValueError on sparse.dot with extremely small values.
      (Issue #398, PR #399)
  - Changelog for 0.11.0
    * Improve the performance of sparse.dot. (Issue #331, PR #389,
      thanks @daletovar)
    * Added the COO.swapaxes method. (PR #344, thanks @lueckem)
    * Added multi-axis 1-D indexing support. (PR #343, thanks
      @mikeymezher)
    * Fix outer for arrays that weren’t one-dimensional. (Issue #346,
      PR #347)
    * Add casting kwarg to COO.astype. (Issue #391, PR #392)
    * Fix for COO constructor accepting invalid inputs. (Issue #385,
      PR #386)
    - Changelog for 0.10.0
    * Fixed a bug where converting an empty DOK array to COO leads to
      an incorrect dtype. (Issue #314, PR #315)
    * Change code formatter to black. (PR #284)
    * Add COO.flatten and sparse.outer. (Issue #316, PR #317).
    * Remove broadcasting restriction between sparse arrays and dense
      arrays. (Issue #306, PR #318)
    * Implement deterministic dask tokenization. (Issue #300, PR
      [#320], thanks @danielballan)
    * Improve testing around densification (PR #321, thanks
      @danielballan)
    * Simplify Numba extension. (PR #324, thanks @eric-wieser).
    * Respect copy=False in astype (PR #328, thanks @eric-wieser).
    * Replace linear_loc with ravel_multi_index, which is 3x faster.
      (PR #330, thanks @eric-wieser).
    * Add error msg to tensordot operation when ndim==0 (Issue #332,
      PR #333, thanks @guilhermeleobas).
    * Maintainence fixes for Sphinx 3.0 and Numba 0.49, and dropping
      support for Python 3.5. (PR #337).
    * Fixed signature for numpy.clip.
  - Changelog for 0.9.1
    * Fixed a bug where indexing with an empty list could lead to
      issues. (Issue #281, PR #282)
    * Change code formatter to black. (PR #284)
    * Add the diagonal and diagonalize functions. (Issue #288, PR
      [#289], thanks @pettni)
    * Add HTML repr for notebooks. (PR #283, thanks @daletovar)
    * Avoid making copy of coords when making a new COO array.
    * Add stack and concatenate for GCXS. (Issue #301, PR #303,
      thanks @daletovar).
    * Fix issue where functions dispatching to an attribute access
      wouldn’t work with __array_function__. (Issue #308, PR #309).
    * Add partial support for constructing and mirroring COO objects
      to Numba.
  - add sparse-pr421-fix-cootype.patch
    * gh#pydata/sparse#420
    * gh#pydata/sparse#421
* Thu Sep 05 2019 Todd R <toddrme2178@gmail.com>
  - Update to 0.8.0
    * Fixed a bug where an array with size == 1 and nnz == 0
      could not be broadcast.
    * Add ``std`` and ``var``.
    * Move to Azure Pipelines with CI for Windows, macOS and
      Linux.
    * Add ``resize``, and change ``reshape`` so it raises a
      ``ValueError`` on shapes that don't correspond to the
      same size.
    * Add ``isposinf`` and ``isneginf``.
    * Fix ``tensordot`` when nnz = 0.
    * Modifications to ``__array_function__`` to allow for sparse
      XArrays.
    * Add not-yet-public support for GCXS.
    * Improvements to ``__array_function__``.
    * Convert all Numba lists to typed lists.
    * Why write code when it exists elsewhere?
    * Fix some element-wise operations with scalars.
    * Private modules should be private, and tests should be in the package.
* Tue Apr 09 2019 pgajdos@suse.com
  - version update to 0.7.0
    * python3-only package, for other changes see changelog.rst

Files

/usr/lib/python3.10/site-packages/sparse
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/LICENSE
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/METADATA
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/RECORD
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/REQUESTED
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/WHEEL
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/entry_points.txt
/usr/lib/python3.10/site-packages/sparse-0.14.0.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/sparse/__init__.py
/usr/lib/python3.10/site-packages/sparse/__pycache__
/usr/lib/python3.10/site-packages/sparse/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_common.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_common.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_dok.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_dok.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_io.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_io.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_numba_extension.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_numba_extension.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_settings.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_settings.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_slicing.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_slicing.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_sparse_array.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_sparse_array.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_umath.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_umath.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_utils.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_utils.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_version.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/__pycache__/_version.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_common.py
/usr/lib/python3.10/site-packages/sparse/_compressed
/usr/lib/python3.10/site-packages/sparse/_compressed/__init__.py
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/common.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/common.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/compressed.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/compressed.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/convert.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/convert.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/indexing.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/__pycache__/indexing.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_compressed/common.py
/usr/lib/python3.10/site-packages/sparse/_compressed/compressed.py
/usr/lib/python3.10/site-packages/sparse/_compressed/convert.py
/usr/lib/python3.10/site-packages/sparse/_compressed/indexing.py
/usr/lib/python3.10/site-packages/sparse/_coo
/usr/lib/python3.10/site-packages/sparse/_coo/__init__.py
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/common.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/common.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/core.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/core.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/indexing.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/indexing.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/numba_extension.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/__pycache__/numba_extension.cpython-310.pyc
/usr/lib/python3.10/site-packages/sparse/_coo/common.py
/usr/lib/python3.10/site-packages/sparse/_coo/core.py
/usr/lib/python3.10/site-packages/sparse/_coo/indexing.py
/usr/lib/python3.10/site-packages/sparse/_coo/numba_extension.py
/usr/lib/python3.10/site-packages/sparse/_dok.py
/usr/lib/python3.10/site-packages/sparse/_io.py
/usr/lib/python3.10/site-packages/sparse/_numba_extension.py
/usr/lib/python3.10/site-packages/sparse/_settings.py
/usr/lib/python3.10/site-packages/sparse/_slicing.py
/usr/lib/python3.10/site-packages/sparse/_sparse_array.py
/usr/lib/python3.10/site-packages/sparse/_umath.py
/usr/lib/python3.10/site-packages/sparse/_utils.py
/usr/lib/python3.10/site-packages/sparse/_version.py
/usr/share/doc/packages/python310-sparse
/usr/share/doc/packages/python310-sparse/README.rst
/usr/share/doc/packages/python310-sparse/changelog.rst
/usr/share/doc/packages/python310-sparse/conduct.rst
/usr/share/doc/packages/python310-sparse/construct.rst
/usr/share/doc/packages/python310-sparse/contributing.rst
/usr/share/doc/packages/python310-sparse/index.rst
/usr/share/doc/packages/python310-sparse/install.rst
/usr/share/doc/packages/python310-sparse/operations.rst
/usr/share/doc/packages/python310-sparse/quickstart.rst
/usr/share/doc/packages/python310-sparse/roadmap.rst
/usr/share/licenses/python310-sparse
/usr/share/licenses/python310-sparse/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed Apr 24 00:13:40 2024