formelsammlung Change Log

Note

These changes are listed in decreasing version number order and not necessarily chronological. Version numbers follow the SemVer principle. See the tags on this repository for all available versions.

v3.2.0 (2021-01-21)

New Features

  • get_venv_tmp_dir now take a tuple of temp dir names to search (optional).

  • get_venv_tmp_dir now can create a temp dir if non is found (opt-in). The name of the temp dir can be customized.

v3.1.0 (2021-01-21)

New Features

  • get_venv_tmp_dir now also finds dotted tmp directories.

Bugfixes

  • test_exponentiation no allows 0 for first number, which caused ZeroDivisionError.


v3.0.1 (2020-12-11)

Bugfixes

  • where_installed no longer fails when no venv is active.


v3.0.0 (2020-12-07)

Breaking Changes

  • get_venv_path, get_venv_bin_dir, get_venv_tmp_dir and get_venv_site_packages_dir now always raise FileNotFoundError when a venv or the corresponding directory could not be found. Removed the raises_error parameter.


v2.0.0 (2020-12-07)

New Features

  • Added get_venv_bin_dir and get_venv_tmp_dir functions.

Breaking Changes

  • get_venv_path now returns a pathlib.Path object instead of a string.


v1.2.0 (2020-11-26)

New Features

  • env_exe_runner now takes a list of runners which can also be a venv.


v1.1.0 (2020-11-25)

New Features

  • Added venv_utils module.


v1.0.0 (2020-11-21)

Breaking Changes

  • Renamed tox_env_exe_runner to env_exe_runner and added runner argument on 2nd place, which takes either tox or nox. With this both runner are supported.


v0.4.0 (2020-11-14)

New Features

  • Added tox_env_exe_runner with wrapper to call it from cli. #17


v0.3.2 (2020-11-13)

Miscellaneous

  • Broaden importlib-metadata version dependency


v0.3.1 (2020-10-24)

Bugfixes

  • Put pytest-flask into testing extra, put flask into flask extra. #16

Documentation

  • Removed old “commit mentioning” passage from changelog. #15

Miscellaneous

  • Update flake8-eradicate to 1.0 in pre-commit. #6


v0.3.0 (2020-10-09)

New Features

  • Added autodetection for sphinx doc dir for SphinxDocServer. #14


v0.2.1 (2020-10-07)

Bugfixes

  • Removed redundant dependency python-dotenv. #12

Documentation

  • Added instruction for creating a venv to install the packge into to installation docs. #13


v0.2.0 (2020-10-06)

Bugfixes

  • Fix the bugged test test_strcalc.test_exponentiation by increasing the base by one for the negative exponent tests. #5

  • Fixed CI bug with complex numbers. #7

New Features

  • Added SphinxDocServer. A flask plugin which adds a route to the flask app to show your build sphinx docs. #4

Documentation

  • Added missing basic information to docs. #2

  • Added code examples to docstrings. #8

  • Increase toctree depth to 5 to show single submodules in API docs. #9

  • Added little functionality overview to README. #11


v0.1.0 (2020-10-03)

Initial release