Skip to content

v1.0.0-alpha.2

Latest
Compare
Choose a tag to compare
@Splines Splines released this 24 Mar 09:23
· 7 commits to main since this release
6a84259

Hey 👋, this is already our second alpha version for 1.0.0. We improved a lot of things:

  • We make better user of the siunitx syntax such that you have more control over the output in your LaTeX document via the \sisetup{...} command from the siunitx LaTeX package. Note that you need an up-to-date version of siunitx to use it with multiple uncertainties. Also see our troubleshooting section.
  • Internally, we now use the python decimal module in order to avoid floating-point issues. You can also pass in your results as Decimal("3.14") for example.
  • We also added a config flag ignore_result_overwrite that you can set to True (via wiz.config_init(...)) to ignore warnings that a result was overwritten. This option might be useful for Jupyter notebooks when you want to re-run cells without getting any warnings that a result with the same name already exists.
  • We also fixed an error regarding a too low number of decimal places.
  • And plenty of other small (internal) improvements, e.g. better tests, centralized error messages, we made sure PyPI correctly recognizes the MIT license, we updated the Readme etc.

Note that we don't have a comprehensive documentation at the moment, just a very basic usage guide in the Readme. Use IntelliSense to find out more ways how to call wiz.res(...). We will tackle a proper documentation in the next releases.

Full Changelog: v1.0.0-alpha.1...v1.0.0-alpha.2