Revisions of python-scipy

buildservice-autocommit accepted request 1009894 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 66)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 1009856 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 65)
- Update to version 1.9.2
  * SciPy 1.9.2 is a bug-fix release with no new features compared
    to 1.9.1.
buildservice-autocommit accepted request 1007747 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 64)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1004520 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 63)
- Update to version 1.9.1
  * SciPy 1.9.1 is a bug-fix release with no new features compared
    to 1.9.0. Notably, some important meson build fixes are
    included.
- Release 1.9.0
  * Full changelog at
    https://docs.scipy.org/doc/scipy/release.1.9.0.html
- Highlights of the 1.9.0 release:
  * We have modernized our build system to use meson,
    substantially improving our build performance, and providing
    better build-time configuration and cross-compilation support,
  * Added scipy.optimize.milp, new function for mixed-integer
    linear programming,
  * Added scipy.stats.fit for fitting discrete and continuous
    distributions to data,
  * Tensor-product spline interpolation modes were added to
    scipy.interpolate.RegularGridInterpolator,
  * A new global optimizer (DIviding RECTangles algorithm)
    scipy.optimize.direct.
- Switch to meson-python PEP517 build
buildservice-autocommit accepted request 990111 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 62)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 990055 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 61)
- Keep lowercase egg-info despite setuptools 60+
buildservice-autocommit accepted request 978687 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 60)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 978681 from andy great's avatar andy great (andythe_great) (revision 59)
- Update to version 1.8.1.
  * Bug-fix release with no new features.
buildservice-autocommit accepted request 969712 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 58)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 969620 from Martin Liška's avatar Martin Liška (marxin) (revision 57)
- With the previously added -ffloat-store, some tests that fail on i586.
  Disable them.
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 969329 from Martin Liška's avatar Martin Liška (marxin) (revision 56)
- Limit double floating point precision for x87, triggered by GCC 12.
  Fixes test_kolmogorov.py Fatal Python error: Floating point exception
  which is a double floating-point test.
buildservice-autocommit accepted request 965742 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 55)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 965726 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 54)
- Update to version 1.8.0
  * https://scipy.github.io/devdocs/release.1.8.0.html
  * SciPy 1.8.0 is the culmination of 6 months of hard work. It
    contains many new features, numerous bug-fixes, improved test
    coverage and better documentation. There have been a number of
    deprecations and API changes in this release. All users are
    encouraged to upgrade to this release, as there are a large
    number of bug-fixes and optimizations. Before upgrading, we
    recommend that users check that their own code does not use
    deprecated SciPy functionality (to do so, run your code with
    python -Wd and check for `DeprecationWarning`s). 
  * A sparse array API has been added for early testing and
    feedback; this work is ongoing, and users should expect minor
    API refinements over the next few releases.
  * The sparse SVD library PROPACK is now vendored with SciPy, and
    an interface is exposed via scipy.sparse.svds with
    solver='PROPACK'. It is currently default-off due to potential
    issues on Windows that we aim to resolve in the next release,
    but can be optionally enabled at runtime for friendly testing
    with an environment variable setting of USE_PROPACK=1.
  * A new scipy.stats.sampling submodule that leverages the UNU.RAN
    C library to sample from arbitrary univariate non-uniform
    continuous and discrete distributions
  * All namespaces that were private but happened to miss
    underscores in their names have been deprecated.
  * Backwards incompatible changes
    - SciPy has raised the minimum compiler versions to GCC 6.3 on
      linux and VS2019 on windows. In particular, this means that
      SciPy may now use C99 and C++14 features. For more details
      see here.
    - The result for empty bins for scipy.stats.binned_statistic
      with the builtin 'std' metric is now nan, for consistency
      with np.std.
    - The function scipy.spatial.distance.wminkowski has been
      removed. To achieve the same results as before, please use
      the minkowski distance function with the (optional) w=
      keyword-argument for the given weight.
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 949906 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 53)
- Provide empty debuginfo extraction for :test flavor
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 949316 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 52)
- Update to version 1.7.3
  * 3rd bugfix release since 1.7.0
- Highlights from the 1.7.0 release
  * A new submodule for quasi-Monte Carlo, scipy.stats.qmc, was
    added
  * The documentation design was updated to use the same
    PyData-Sphinx theme as NumPy and other ecosystem libraries.
  * We now vendor and leverage the Boost C++ library to enable
    numerous improvements for long-standing weaknesses in
    scipy.stats
  * scipy.stats has six new distributions, eight new (or
    overhauled) hypothesis tests, a new function for bootstrapping,
    a class that enables fast random variate sampling and
    percentile point function evaluation, and many other
    enhancements.
  * cdist and pdist distance calculations are faster for several
    metrics, especially weighted cases, thanks to a rewrite to a
    new C++ backend framework
  * A new class for radial basis function interpolation,
    RBFInterpolator, was added to address issues with the Rbf
    class.
- Enable fast part of the test suite
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 908430 from Andreas Schwab's avatar Andreas Schwab (Andreas_Schwab) (revision 51)
- Enable openblas on riscv64
buildservice-autocommit accepted request 890051 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 50)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 889897 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 49)
update to latest version
buildservice-autocommit accepted request 883202 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 48)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 882909 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 47)
update to latest version
Displaying revisions 41 - 60 of 106
openSUSE Build Service is sponsored by