Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

7.0.0

Choose a tag to compare

@hannahdiels hannahdiels released this 22 Feb 18:28
· 32 commits to master since this release
  • Backwards incompatible changes:

    • Remove path.tsv_lines: use parse.tsv instead.

    • Remove algorithms.spread_points_in_hypercube: it simply returned opints
      on a grid, which can be achieved with numpy.meshgrid, e.g. 3D grid:

      import numpy as np
      side = np.linspace(0, 1, ceil(n**(1/3)))
      points = np.array(np.meshgrid(side, side, side)).reshape(3,-1).T
      
    • Rename path.assert_mode to test.assert_file_mode

    • Rename path.assert_equals to test.assert_file_equals

  • Enhancements/additions:

    • Add test.assert_dir_equals
    • Add various.join_multiline
    • Add test.assert_xlsx_equals
    • Add parse.csv
    • Add parse.tsv
    • Add write.csv
    • Add write.tsv