Skip to content

Releases: soft-matter/trackpy

v0.6.3

07 Jun 20:11
09ad08f
Compare
Choose a tag to compare

trackpy v0.6.3 is a minor compatibility update for newer Pandas verisons. See http://soft-matter.github.io/trackpy/dev/whatsnew.html

v0.6.3rc1

30 May 19:44
c1faf16
Compare
Choose a tag to compare
v0.6.3rc1 Pre-release
Pre-release

trackpy v0.6.3 is a minor compatibility update for newer Pandas verisons. See http://soft-matter.github.io/trackpy/dev/whatsnew.html

v0.6.2

23 Feb 11:34
2a7aab8
Compare
Choose a tag to compare

trackpy v0.6.2 includes bug fixes, and compatibility fixes with newer dependency versions.

A special thanks to everyone who reported the issues fixed in this release!

Bug fixes

  • Fixed an issue with feature-finding in 4D image sequences (@VeraMTitze, #739)
  • Fixed a rare issue in which subtract_drift() with multiple particles
    resulted in a Pandas indexing error. (@kevin-duclos, #735)

Dependencies

0.6.2rc1

17 Feb 21:24
3f3d412
Compare
Choose a tag to compare
0.6.2rc1 Pre-release
Pre-release

v0.6.1

23 Feb 13:10
05a6439
Compare
Choose a tag to compare

trackpy v0.6.1 is functionally equivalent to v0.6.0. It is being released to fix an issue with Zenodo, so that this trackpy release has a citable DOI.

See the release notes for v0.6.0 for more information.

v0.6.1rc1

23 Feb 12:01
da5dbd3
Compare
Choose a tag to compare
v0.6.1rc1 Pre-release
Pre-release

trackpy v0.6.1 is functionally equivalent to v0.6.0. It is being released to fix an issue with Zenodo, so that this trackpy release has a citable DOI.

See the release notes for v0.6.0 for more information.

v0.6.0

23 Feb 02:05
da5dbd3
Compare
Choose a tag to compare

This release focuses on fixing bugs and some inconsistencies in the prediction
capabilities. Some existing code that used prediction may now fail to run until
a (minor) update is made.

This release includes contributions by @magnunor, @freemansw1, @crisp-snakey,
@rbnvrw, @caspervdw, @tacaswell, and @nkeim.

Enhancements

  • Linking can now use any DistanceMetric class from sklearn to compute
    distances (#692 by @freemansw1)
  • Several documentation fixes by @magnunor and @nkeim

API Changes

  • When supplying an initial velocity guess to NearestVelocityPredict or
    DriftPredict, you must also supply the pos_columns argument to identify
    the names of the columns in your array. (For example,
    "pos_columns = ['y', 'x']".) Otherwise, creating the predictor will
    raise an exception that explains this change. If you provide pos_columns
    when creating the predictor, you do not have to supply it when subsequently
    using the link_df() or link_df_iter() methods to link your features.
    (@nkeim, #710)
  • reconnect_traj_patch() is now available as trackpy.reconnect_traj_patch
    and is described in the API documentation. (@nkeim, #648)

Bug Fixes

  • When linking with prediction, the predictor now correctly uses the same
    position columns as the linker, and correctly handles the pos_columns
    argument if specified. (@nkeim, #710)
  • The link_df() method of predictor objects now works correctly. (@nkeim, #710)

Dependencies

  • trackpy is now being tested in conda environments with Python 3.10.
  • trackpy is no longer tested with Python 3.6.
  • trackpy now requires the looseversion package to work with newer scipy
    (@crisp-snakey, #706)
  • Much work on testing and packaging infrastructure by @tacaswell and @caspervdw

Note: This release is tagged v0.6.0.1 on GitHub to address an issue with Zenodo DOI generation. There are no other differences between the GitHub version and the v0.6.0 packages.

Trackpy v0.5.0

13 Apr 08:08
Compare
Choose a tag to compare

This is a major release focused on enhancements. Most notably, parallel processing is now turned on by default for “trackpy.batch” and “trackpy.locate_brightfield_ring”, resulting in a large performance increase for many users. Another minor speedup changes the way in which particle numbers are generated, which may cause issues with reproducibility in some existing workflows (see “API Changes” below).

Note that Python 2 reached end-of-life in 2020, and it is no longer officially supported by trackpy. Also, trackpy dropped support for older NumPy, Scipy and Pandas. The current minimum requirements are: python>=3.6 numpy>=1.14 scipy>=1.1 pandas>=0.22.

See the "What's new in the package" page in the documentation for a full list of changes.

Trackpy v0.4.2

16 Oct 15:21
9bef309
Compare
Choose a tag to compare

This is a minor release with two major new features: parallel processing to speed up feature-finding, and a new method for locating features in bright-field microscopy. There is also an overhaul of the walkthrough and other tutorials, and compatibility with the latest version of Pandas (0.25.1).

See the "What's new in the package" page in the documentation for a full list of changes.

Trackpy v0.4.1

21 Apr 10:09
dfbb8f8
Compare
Choose a tag to compare

This is a minor release with some important fixes. Additionally, PIMS is no longer a required dependency, which makes installation easier.