Skip to content

Releases: espdev/csaps

v1.3.2

15 Apr 22:39
0522ebd
Compare
Choose a tag to compare
  • Remove docs extra dependencies from the package
  • Refresh the documentation with Furo theme

v1.3.1

14 Apr 22:32
a50dc88
Compare
Choose a tag to compare
Merge pull request #98 from espdev/update-readme

Update readme

v1.3.0

14 Apr 17:16
e9522a3
Compare
Choose a tag to compare
  • Bump minimal Python version to 3.10
  • Fix type annotations
  • Fix checking types by mypy

v1.2.1

10 Apr 23:05
827c97e
Compare
Choose a tag to compare
  • Update dependencies
  • Update the package classifiers

v1.2.0

30 Jun 12:39
97c7671
Compare
Choose a tag to compare
  • Bump minimal Python version to 3.9
  • Use ruff as the code linter and formatter
  • Update dependencies

v1.1.0

05 Oct 11:04
Compare
Choose a tag to compare
  • Introduced optional normalizedsmooth argument to reduce dependence on xdata and weights #47
  • Update numpy and scipy dependency ranges

v1.0.4

08 Jun 13:14
Compare
Choose a tag to compare

Update dependencies

CSAPS v1.0.2

19 Jul 20:08
Compare
Choose a tag to compare
  • Fix using 'nu' argument when n-d grid spline evaluating #32
  • Fix n-d grid spline evaluating performance regression #31 (v1.0.1)

CSAPS v1.0.0

11 Jul 12:54
Compare
Choose a tag to compare

CSAPS v1.0.0 release

  • Use PPoly and NdPPoly base classes from SciPy interpolate module for SplinePPForm and NdGridSplinePPForm respectively.
  • Remove deprecated classes UnivariateCubicSmoothingSpline and MultivariateCubicSmoothingSpline
  • Update the documentation

Notes

In this release the spline representation (the array of spline coefficients) has been changed according to PPoly/NdPPoly. See SciPy PPoly and NdPPoly documentation for details.

CSAPS v0.11.0

27 Mar 23:40
a05249b
Compare
Choose a tag to compare
  • Internal re-design SplinePPForm and NdGridSplinePPForm classes #17:
    • Remove shape and axis properties and reshaping data in these classes
    • NdGridSplinePPForm coefficients array for 1D grid now is 1-d instead of 2-d
  • Refactoring the code and decrease memory consumption
  • Add overload type-hints for csaps function signatures