Skip to content

Releases: LabForComputationalVision/pyrtools

v1.0.9

02 Apr 18:01
c937115
Compare
Choose a tag to compare

Avoid numpy DeprecationWarning by using np.asarray to initialize arrays, instead of np.array.

What's Changed

  • switch almost all np.array to np.asarray by @billbrod in #44

Full Changelog: v1.0.8...v1.0.9

v1.0.8

31 Mar 16:11
37dd9c0
Compare
Choose a tag to compare

Small changes to make display errors and warnings more informative:

Full Changelog: v1.0.7...v1.0.8

v1.0.7

24 Mar 22:04
198cab0
Compare
Choose a tag to compare

What's Changed

  • Updates pyrshow error message, adds tests by @billbrod in #40
  • updates steerpyr behavior to match plenoptic by @billbrod in #39
  • updates gh actions by @billbrod in #41
  • actually correctly updates deploy tag, bumps version numbers by @billbrod in #42

Full Changelog: v1.0.6...v1.0.7

v1.0.6

13 Nov 17:30
852f45e
Compare
Choose a tag to compare

Small change here to the polar_angle function, allowing user to set the direction that angle increases (clockwise or counter-clockwise)

What's Changed

Full Changelog: v1.0.5...v1.0.6

v1.0.5

17 Jul 19:04
b1228f8
Compare
Choose a tag to compare

Main change here is to update some of the C code that it can be compiled with clang 16, as needed for the conda-forge OSX build (conda-forge/staged-recipes#25506).

What's Changed

Full Changelog: v1.0.4...v1.0.5

v1.0.4

13 Feb 23:56
5582f77
Compare
Choose a tag to compare

Because of a pip update, our installation was failing. The fix was something I should've done a while ago: starting to use pyproject.toml. Users shouldn't notice any difference with this release, other than edits to the readme/docs.

What's Changed

  • Add pyproject.toml with wheel as build-time dependency by @WardBrian in #31
  • Switch all metadata to pyproject.toml by @billbrod in #32

Full Changelog: v1.0.3...v1.0.4

v1.0.3

18 Dec 19:04
ec7feec
Compare
Choose a tag to compare

🎉 Windows support! 🎉

Thanks to @WardBrian , we now have Windows support. We also now upload compiled wheels to PyPI in addition to the sdist file.

All users should now be able to run pip install pyrtools and get a working install, regardless of OS.

What's Changed

New Contributors

Full Changelog: v1.0.2...v1.0.3

v1.0.2

20 Nov 17:10
c36ac7c
Compare
Choose a tag to compare

Largely documentation-related updates:

What's Changed

Full Changelog: v1.0.1...v1.0.2

v1.0.1

21 Dec 21:18
e4cf002
Compare
Choose a tag to compare

Minor update

  • #14: tarball sanitation before extraction
  • #15: np.float -> float (which removes a deprecation warning)
  • small updates in readme and docs (largely around badges)
  • switches CI from Travis (which was inactive) to Github actions
  • adds tests for tutorials, making sure they run and that all notebooks in the TUTORIALS/ folder are included in the docs
  • renames master branch to main

Full Changelog: v1.0.0...v1.0.1

v1.0.0

16 Oct 19:10
Compare
Choose a tag to compare

Changes since v0.9.4 are mainly to some of the display code:

  • imshow and animshow now correctly handle RGB(A) images
  • there's a breaking change in how imshow and animshow want multiple images / videos. They can no longer be arrays with an extra dimension (e.g., 3d array of multiple grayscale images); they must be lists of those arrays. This allows us to avoid some annoying ambiguity.
  • animshow correctly handles complex arrays.
  • adds more tests for imshow and animshow